用户登录
还没有账号?立即注册
用户注册
点击换图
投稿取消
文章分类:
还能输入300字

上传中....

特定页面禁止编辑

时间:2023-03-30 作者: 来源:顿格文库

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');

}

}


『此文*为顿格文库文①章,未经允许不得转载!』

热门关键词