#23844 closed defect (bug) (duplicate)
remove_theme_support( 'post-formats' ); doesn't effect that ugly tab bar for post formats in post-new.php
Reported by: | pixolin | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.6 |
Component: | Post Formats | Keywords: | |
Focuses: | Cc: |
Description
I tried to remove theme support for post-formats with
remove_theme_support('post-formats');
and even
add_action('after_setup_theme', 'remove_post_formats', 11); function remove_post_formats() { remove_theme_support('post-formats'); }
but wasn't able to remove the tab bar that shows post formats underneath the title field.
I would have expected that this would remove the entire tab bar or at least disable it's functionality.
Change History (2)
Note: See
TracTickets for help on using
tickets.
Duplicate of #23718.
The tabs are temporary, the latest patches on #19570 turn them into a dropdown menu.