filesystem_method

过滤钩子
apply_filters( 'filesystem_method', $method, $args, $context, $allow_relaxed_file_ownership )
参数
  • (string) $method Filesystem method to return.
    Required:
  • (array) $args An array of connection details for the method.
    Required:
  • (string) $context Full path to the directory that is tested for being writable.
    Required:
  • (bool) $allow_relaxed_file_ownership Whether to allow Group/World writable.
    Required:
定义位置
相关勾子
filesystem_method_filerequest_filesystem_credentialsdelete_commentdeleted_commentdelete_postmeta
相关方法
get_filesystem_methodwp_filesystemdelete_metais_site_meta_supporteddelete_metadatadelete_term_meta
引入
2.6.0
弃用
-

filesystem_method是一个过滤器钩子,允许开发者改变WordPress用来执行文件操作的文件系统方法,如安装插件、更新主题和创建备份。默认值是”direct”,但可以改成”ftpext”或”ftpsockets”,以使用FTP进行文件操作。

过滤要使用的文件系统方法。

return apply_filters( 'filesystem_method', $method, $args, $context, $allow_relaxed_file_ownership );

常见问题

FAQs
查看更多 >