register_taxonomy_for_object_type()
Binds (adds) the specified taxonomy to the specified post type.
Used to add a taxonomy to a post type, for example, to add tags to static pages.
1 time — 0.000001 sec (speed of light) | 50000 times — 0.03 sec (speed of light) | PHP 7.1.11, WP 4.9.8
Hooks from the function
Returns
true|false. true if the taxonomy was successfully linked.
Usage
register_taxonomy_for_object_type( $taxonomy, $object_type );
- $taxonomy(string) (required)
- Name of the taxonomy.
- $object_type(string) (required)
- Name of the post type to which the taxonomy will be linked.
Examples
#1 Using the following code, we can bind tags to static WP pages.
add_action( 'init', 'post_tag_for_pages' );
function post_tag_for_pages(){
register_taxonomy_for_object_type( 'post_tag', 'page' );
}
Do not forget to use the init hook to run this function. If not, the taxonomy and / or the CPT you want to reference might not have been created yet.
As a result, in the admin, when editing pages, we will have a tag block, like the posts:
Notes
- Global. WP_Taxonomy[]. $wp_taxonomies The registered taxonomies.
Changelog
| Since 3.0.0 | Introduced. |