wpseek.com
A WordPress-centric search engine for devs and theme authors
register_taxonomy_for_object_type › WordPress Function
Since3.0.0
Deprecatedn/a
› register_taxonomy_for_object_type ( $taxonomy, $object_type )
Parameters: (2) |
|
Returns: |
|
Defined at: |
|
Codex: |
Add an already registered taxonomy to an object type.
Source
function register_taxonomy_for_object_type( $taxonomy, $object_type ) { global $wp_taxonomies; if ( ! isset( $wp_taxonomies[ $taxonomy ] ) ) { return false; } if ( ! get_post_type_object( $object_type ) ) { return false; } if ( ! in_array( $object_type, $wp_taxonomies[ $taxonomy ]->object_type ) ) { $wp_taxonomies[ $taxonomy ]->object_type[] = $object_type; } // Filter out empties. $wp_taxonomies[ $taxonomy ]->object_type = array_filter( $wp_taxonomies[ $taxonomy ]->object_type ); return true; }