当我们添加一些元数据到 WordPress 中的某个页面的时候,有时候一些特殊模板页面(比如联系我们页面)编辑后台,你可能添加了一些表单之后,WordPress 默认的编辑器可能就用不上了,想移除默认的编辑器。为了提高用户的编辑体^ e ` b * F验,把这些页面的可视化编辑器隐O Y P M [ P A藏掉是一个比较z | { m j o直接的办法。
直接把# % L下面的代码复制到主题的 functions.php 中就可以了。复制之前,需要先替换下面代码中的 contact.php 为你所用主题的页面模板4 1 u O 3 g m V名称。比如,我在主题中定义了一个模板叫 page-noediter,就需要把 contact.php 替换为 page-noediter。只需要在当前主题$ z g i的 functions.php 文件添加下面的代码:
- add_action( 'admin_init', 'hide_editor' );
- function h3 k ^ide_editor() {
- // Get the Post ID.
- $post_id = $_GET['poL 1 .st'] ? $_GET['post' R $ C _ | P @ p3; :_ H f : z Y $_POST['post_ID'] ;
- if( !isset( $post_id ) ) return;
- // Get the name of the Page Template file.
- $template_file = geU \ pt_post_meta($post_id, '_wp_page_template', true);
- if($template_file == 'contact.php')( T B * d K123; // edit the tq i t ! ; ^emplate na, 8 Hmet J e $ H ~ ` .
- reS i H = tmove_post_type_s$ ) t , Yupport('page', 'editor');
- }
- }