show_advanced_plugins

过滤钩子
apply_filters( 'show_advanced_plugins', true, 'mustuse' )
参数
  • (bool) $show Whether to show the advanced plugins for the specified plugin type. Default true.
    Required:
  • (string) $type The plugin type. Accepts 'mustuse', 'dropins'.
    Required:
定义位置
相关勾子
activated_pluginshow_network_active_pluginsdeactivated_plugintiny_mce_pluginsteeny_mce_plugins
相关方法
wp_paused_pluginswp_update_pluginsactivate_pluginswp_update_pluginwp_dashboard_pluginsdeactivate_plugins
引入
3.0.0
弃用
-

show_advanced_plugins是WordPress的一个过滤器钩子,它决定高级插件在插件列表中是显示还是隐藏。高级插件是默认隐藏的插件,但可以通过勾选”显示高级插件”选项来显示。

筛选是否显示高级插件列表表。

有两种类型的高级插件-必须使用和插件-可以在单个站点或多站点网络中使用。

$type参数允许您区分要过滤其显示的高级插件的类型。上下文包括“mustuse”和“dropins”。

if ( apply_filters( 'show_advanced_plugins', true, 'mustuse' ) ) {

常见问题

FAQs
查看更多 >