SO网友:Stephen M. Harris
@m0r7if3r的回答实际上在“立即”仪表板小部件中产生了一个错误。即使关闭了错误,“标记”行也显示为空白计数。我扩展了that solution 要在此仪表板小部件中隐藏“标记”,请执行以下操作:
add_action( \'init\', \'wpse48017_remove_tags\' );
function wpse48017_remove_tags(){
global $wp_taxonomies;
unset($wp_taxonomies[\'post_tag\']);
global $pagenow;
if( $pagenow == \'index.php\' ){
add_action( \'admin_head\', \'ob_start\', 0, 0 );
add_action( \'right_now_content_table_end\', \'wpse48017_remove_tags_dashboard\' );
}
}
function wpse48017_remove_tags_dashboard(){
#echo \'<pre>\'.htmlentities( ob_get_clean(), 0, null, true );die();
echo preg_replace(\'#(Categories</a></td></tr>)<tr>([\\s\\S]*?number_format\\(\\) expects parameter 1 to be double, object given[\\s\\S]*?)?<td class="first b b-tags.*?</tr>#\',\'$1\',ob_get_clean());
}
删除标记可能会在其他方面产生错误,或中断硬编码链接。所以我想把它变成一个社区维基,但这个讨论可能属于
core.trac.wordpress.org.