WordPress.org

Make WordPress Core

Opened 14 months ago

Last modified 7 months ago

#20438 new defect (bug)

Custom Post Types with Post Format support aren't registered against post_format taxonomy

Reported by: batmoo Owned by:
Priority: normal Milestone: Awaiting Review
Component: General Version:
Severity: normal Keywords: close
Cc: batmoo, wordpress@…, sararcannon@…

Description

When a custom post type adds support for post-formats, this doesn't actually register the post_format taxonomy for the post_type.

Here's a quick test:

add_action( 'init', function() {
        register_post_type( 'not-post', array( 'supports' => 'post-formats' ) );
        global $wp_taxonomies;
        var_dump( 'post supports post_format:', in_array( 'post', $wp_taxonomies[ 'post_format' ]->object_type ) );
        var_dump( 'not-post supports post_format:', in_array( 'not-post', $wp_taxonomies[ 'post_format' ]->object_type ) );
} );

The post_format taxonomy doesn't get returned when get_object_taxonomies is called for the custom post type and one side-effect of this is that the post_format_relationships cache does not get flushed by clean_object_term_cache leading to stale values when a post format is changed.

(The post post_type is immune to this because core registers the post_format taxonomy with it.)

When a post_type adds support for post-formats, an explicit association should be made between the post_type and the post_format taxonomy.

Change History (5)

comment:1 danielbachhuber14 months ago

  • Cc wordpress@… added

comment:2 saracannon14 months ago

  • Cc sararcannon@… added

comment:3 nacin14 months ago

If you are going to add UI support for post formats, you should just add the object type to the taxonomy as well.

So:

add_post_type_support( 'page', 'post-formats' );
register_taxonomy_for_object_type( 'post-format', 'page' );

We discussed this in 3.1. Given that using post formats for something other than posts is generally not going to be a good idea (or at least a very uncommon one), I certainly think two lines is just fine, rather than one plus doing something to unnecessarily automate this in core.

comment:4 nacin14 months ago

  • Keywords close added
Note: See TracTickets for help on using tickets.