首页    >    新闻资讯    >   特定页面禁止编辑

特定页面禁止编辑

WordPress这个开源的软件经过用户的不过发觉出现了各种各样的功能,有的修改大家看法不一,说的说有用,有的说没用,但是我总相信存在即合理,被发觉出来就会有朋友需要他的,我要说的这个功能就是这样。。如果一个页面使用特殊的模块设置,那么当你发表了这个页面时候使用如下代码就可以禁止页面被编辑。把他放进你的functions.php中。不要忘记把06行的模块名字改成你所使用的

add_action( 'admin_init', 'hide_editor' );
function hide_editor() {
    $post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'] ;
    if( !isset( $post_id ) ) return;
    $template_file = get_post_meta($post_id, '_wp_page_template', true);
    if($template_file == 'submit.php'){ // edit the template name
        remove_post_type_support('page', 'editor');
    }
}

分类:新闻资讯

标签:, , , ,

* 版权声明:作者WordPress啦! 转载请注明出处。