从GitHub Wiki
The\'front_end_editor_disable\'
-如果要完全禁用特定URL的插件,请使用此筛选器。
回调参数:
bool $disable
: 当前状态。默认值:false
可以使用条件标记:条件标记返回bool true/false
, 也就是说,如果要在页面上禁用它,只需使用is_page()
, 当它返回时true
对于页面
禁用页面收费,作为(mu)插件。
<?php
/** Plugin Name: (#73660) Disable Front Page Editor on pages */
function wpse73660_disable_on_author_pages( $disable )
{
return is_author();
}
add_filter( \'front_end_editor_disable\', \'wpse73660_disable_on_author_pages\' );