WordPress页面模板进行开发后台移除默认编辑器
在Wordpress开发过程中,很多时候,需要用到页面模板进行开发,这时候很可能会成为累赘,比如:某联系页面,你建立了很多字段,电话、姓名、邮箱等,默认编辑器成了摆设,为了让客户更好的使用后台,这时候我们需要移除后台的默认编辑器:将如下代码添加到functions.php中就好!
//移除某个页面的编辑器
add_action( 'admin_init', 'themetuts_remove_editor' );
function themetuts_remove_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 == 'page-contact.php'||$template_file ==
'page-profile.php'||$template_file == 'page-process.php'){
// edit the template name
remove_post_type_support('page', 'editor');
}
}
关注公众号:拾黑(shiheibook)了解更多
[广告]赞助链接:
四季很好,只要有你,文娱排行榜:https://www.yaopaiming.com/
让资讯触达的更精准有趣:https://www.0xu.cn/
关注网络尖刀微信公众号
随时掌握互联网精彩
随时掌握互联网精彩
赞助链接
排名
热点
搜索指数
- 1 习近平拉美之行的三个“一” 7997683
- 2 微信或史诗级“瘦身” 内存有救了 7997298
- 3 男子求助如何打开亡父遗留14年手机 7889201
- 4 中国主张成为G20峰会的一抹亮色 7709010
- 5 中国对日本等国试行免签 7691437
- 6 7万余件儿童羽绒服里没有真羽绒 7529022
- 7 女生半裸遭男保洁刷卡闯入 酒店回应 7472012
- 8 70多辆小米SU7同一天撞墙撞柱 7340693
- 9 操纵股价 2人被证监会罚没近3.35亿 7242866
- 10 千年古镇“因网而变、因数而兴” 7185947