Is it possible to remove the “Post Format” meta box from the edit/new post page?
The blog in question has a lot of users that keep messing with that but it only uses the standard format post.

I’m kind of new to wordpress so excuse me if this is a really obvious one.

Thanks.

3 s
3

That gets added because your theme supports post-formats.

You can either use a plugin (or a child theme’s functions.php) file to hook into after_setup_theme late and remove theme support:

<?php
add_action('after_setup_theme', 'wpse65653_remove_formats', 100);
function wpse65653_remove_formats()
{
   remove_theme_support('post-formats');
}

Or look for the the line in your theme’s functions.php file:

add_theme_support('post-formats');

and remove it.

The first option is a better bet. Stick it in a plugin and it will be there for the next theme you use as well.

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *