Disable Post Settings

Posted in: Newspaper
Post count: 5

Hi guys,

I want to disable “Post settings” in post editor how can I do that?
I tried this in function.php:

function remove_post_meta_boxes()
{
remove_meta_box('td_post_theme_settings_metabox', 'post', 'normal');
}
add_action( 'admin_menu', 'remove_post_meta_boxes' );

But nothing changed.

Thanks

Post count: 20688

Hi,

Something like this will work, give it a try
https://www.screencast.com/t/e4W1Dxo5pHv
https://www.screencast.com/t/SLD3hDyIEU0F

add_action( 'add_meta_boxes', 'tu_remove_meta_boxes', 999 );
function tu_remove_meta_boxes() {
remove_meta_box('td_post_theme_settings_metabox', 'post', 'normal');
}

Thanks

Post count: 5

Thanks my friend it works!

I wanted a code that works for every user not just for me.

How can I mark the post as resolved ?

  • This reply was modified 8 years by Belkadam.
Post count: 20688

Glad it worked, I will mark it as resolved. Have a nice day!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.