How to customize the publish metabox?
-
Hey guys,
Does anyone know how can you customize the publish metabox? I have the seo by yoast plugin installed, but it’s showing this SEO Check line on in the publish metabox, I would like to disable it/remove it/hide it. Is there anyway to do that?
I’ve already tried Adminimze, no luck (I also tried to add global setting new class #misc-pub-section misc-yoast misc-pub-section-last)
and this in my function.php but also no luck
‘function hide_all_post_page_options() {
global $post;
$hide_all_post_options = “<style type=\”text/css\”> #misc-pub-section misc-yoast misc-pub-section-last, #wpseo_linkdex { display: none !important; }</style>”;
print($hide_all_post_options);
}
add_action( ‘admin_head’, ‘hide_all_post_page_options’ );’I would rather not want to remove the seo plugin.
- The topic ‘How to customize the publish metabox?’ is closed to new replies.