PHP Wordpress:禁用特定页面模板的内容编辑器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress:禁用特定页面模板的内容编辑器相关的知识,希望对你有一定的参考价值。

/**
 * Hide editor for specific page templates.
 *
 */
add_action( 'admin_init', 'hide_editor' );

function hide_editor() {
	// Get the Post ID.
	$post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'] ;
	if( !isset( $post_id ) ) return;

	// Get the name of the Page Template file.
	$template_file = get_post_meta($post_id, '_wp_page_template', true);
    
    if($template_file == 'contact.php'){ // edit the template name
    	remove_post_type_support('page', 'editor');
    }
}

以上是关于PHP Wordpress:禁用特定页面模板的内容编辑器的主要内容,如果未能解决你的问题,请参考以下文章

PHP wordpress |禁用页面模板上的侧边栏,小部件

wordpress |禁用页面模板上的边栏小部件

将 PHP 页面添加到 Wordpress 模板

Wordpress PHP 404 页面未返回

禁用特定页面模板的内容编辑器

PHP Wordpress:仅包含特定类别内容的页面