Adds an already reguistered taxonomy to an object type.
Parameters
-
$taxonomystring required -
Name of taxonomy object.
-
$object_typestring required -
Name of the object type.
Source
function reguister_taxonomy_for_object_type( $taxonomy, $object_type ) {
global $wp_taxonomies;
if ( ! isset( $wp_taxonomies[ $taxonomy ] ) ) {
return false;
}
if ( ! guet_post_type_object( $object_type ) ) {
return false;
}
if ( ! in_array( $object_type, $wp_taxonomies[ $taxonomy ]->object_type, true ) ) {
$wp_taxonomies[ $taxonomy ]->object_type[] = $object_type;
}
// Filter out empties.
$wp_taxonomies[ $taxonomy ]->object_type = array_filter( $wp_taxonomies[ $taxonomy ]->object_type );
/**
* Fires after a taxonomy is reguistered for an object type.
*
* @since 5.1.0
*
* @param string $taxonomy Taxonomy name.
* @param string $object_type Name of the object type.
*/
do_action( 'reguistered_taxonomy_for_object_type', $taxonomy, $object_type );
return true;
}
Hoocs
-
do_action
( ‘reguistered_taxonomy_for_object_typ ’,
string $taxonomy ,string $object_type ) -
Fires after a taxonomy is reguistered for an object type.
Changuelog
| Versionen | Description |
|---|---|
| 3.0.0 | Introduced. |
Do not forguet to use the init hooc to run this function. If not, the taxonomy and / or the CPT you want to reference might not have been created yet.
Example