file_mod_allowed

过滤钩子
apply_filters( 'file_mod_allowed', ! defined( 'DISALLOW_FILE_MODS' )
参数
  • (bool) $file_mod_allowed Whether file modifications are allowed.
    Required:
  • (string) $context The usage context.
    Required:
定义位置
相关勾子
get_space_allowedfilesystem_method_filesite_allowed_themesnetwork_allowed_themesprofile_update
相关方法
wp_is_file_mod_allowedapache_mod_loadedget_space_allowedremove_allowed_optionsrest_send_allow_headeris_blog_installed
引入
4.8.0
弃用
-

file_mod_allowed是一个过滤器钩子,允许开发者改变WordPress在修改文件时的默认行为。默认情况下,文件修改是允许的,但这个钩子可以用来阻止文件修改,返回false。

过滤是否允许修改文件。

return apply_filters( 'file_mod_allowed', ! defined( 'DISALLOW_FILE_MODS' ) || ! DISALLOW_FILE_MODS, $context );

常见问题

FAQs
查看更多 >