Post formats are supported by your theme. The command is in the functions.php file. Just look for something like:
add_theme_support( 'post-formats', array( 'aside', 'gallery' ) );
and delete the element you don’t want to you use inside the array().
http://codex.ww.wp.xz.cn/Post_Formats
In WordPress 3.5, your theme controls what post formats are available, so check it’s functions.php file. In WordPress 3.6 (due out shortly), WordPress core will be supporting all post formats.
Thread Starter
waak
(@waak)
Hey guys, thanks for the replys.
So I edited the functions.php but they’re all still appearing in the admin panel…
I’m using/testing the 3.6 version.
In WordPress 3.6 core be supports all post formats automatically and by default. You could try using remove_theme_support() but I’m not sure (as yet) if this will work with the new post format api.
Hi,
Not sure if I am doing something wrong or the WP3.6 (beta 3) doesn’t support the feature, but removing certain post formats doesn’t work:
remove_theme_support( 'post-formats', array( 'image', 'chat', 'aside' ) );
…neither…
remove_theme_support( 'structured-post-formats', array( 'image', 'chat', 'aside' ) );
Hoping this will work in later versions of WP… Or are we left with hiding the post format selectors with CSS in admin?