php 默认隐藏wordpress中的MetaBox

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 默认隐藏wordpress中的MetaBox相关的知识,希望对你有一定的参考价值。

//https://wordpress.stackexchange.com/questions/15376/how-to-set-default-screen-options

add_filter( 'hidden_meta_boxes', 'custom_hidden_meta_boxes' );
function custom_hidden_meta_boxes( $hidden ) {
    // Hide meta boxes on the single Post screen
    // Left column  
   $hidden[] = 'postexcerpt';       // Post Excerpts
   $hidden[] = 'trackbacksdiv';     // Send Trackbacks
   $hidden[] = 'postcustom';        // Custom Fields
   $hidden[] = 'commentstatusdiv';  // Discussion
   $hidden[] = 'commentsdiv';       // Comments - Add comment
   $hidden[] = 'slugdiv';           // Slug
   $hidden[] = 'authordiv';		    // Author
   
   // Right column
   $hidden[] = 'submitdiv';		    // Publish
   $hidden[] = 'formatdiv';		    // Format (for themes that use Post Format)
   $hidden[] = 'categorydiv';	    // Categories
   $hidden[] = 'tagsdiv-post_tag';	// Tags
   $hidden[] = 'postimagediv';	    // Featured Image 
    
    // Hide meta boxes on the single Page screen
    // Left Column
    $hidden[] = 'revisionsdiv';   	// Revisions
    $hidden[] = 'postcustom'; 		// Custom Fields
    $hidden[] = 'commentstatusdiv'; // Discussion		
    $hidden[] = 'commentsdiv'; 		// Comments - Add comment
    $hidden[] = 'slugdiv';          // Slug
    $hidden[] = 'authordiv';		// Author
    
    // Right column
    $hidden[] = 'submitdiv';		// Publish
    $hidden[] = 'pageparentdiv'; 	// Page Attributes
    $hidden[] = 'postimagediv'; 	// Featured Image 
    
        return $hidden;
}

以上是关于php 默认隐藏wordpress中的MetaBox的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress,替换默认的WordPress“W”仪表板中的徽标

php 删除WordPress中的默认图像链接

php 删除WordPress中的默认图像链接

隐藏后,从URL显示WordPress菜单页面

php 隐藏元 - WordPress管理员

php 隐藏菜单链接 - WordPress管理员