Disable / remove "Post Settings" (metabox) for editors and below

Posted in: Newspaper
Post count: 13

Hi, can you please tell me how can i disable (remove) the post settings metabox on
I try
remove_meta_box( ‘td_post_theme_settings_metabox’ , ‘post’ , array (‘normal’, ‘side’) );
but no luck…

I need that my editors cant change the settings…

Salutare!
puteti sa-mi spuneti cum pot sa elimin metabox-ul Post Settings. Am incercat cu ” remove_meta_box( ‘td_post_theme_settings_metabox’ , ‘post’ , array (‘normal’, ‘side’) );” in functions.php dar nu a mers…

  • This topic was modified 6 years by Kpkna. Reason: Versiune in limba romana a postarii
Post count: 13

Solved!

add_action( 'do_meta_boxes', 'eliminbox' );
function eliminbox(){
if ( ! current_user_can( 'administrator' ) ) {
remove_meta_box( 'td_post_theme_settings_metabox', 'post', 'side' );

}
}

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.