registered_post_type_(post_type)
Fires after a specific post type is registered.
The dynamic portion of the filter name, $post_type, refers to the post type key.
Possible hook names include:
Usage
add_action( 'registered_post_type_(post_type)', 'wp_kama_registered_post_type_action', 10, 2 ); /** * Function for `registered_post_type_(post_type)` action-hook. * * @param string $post_type Post type. * @param WP_Post_Type $post_type_object Arguments used to register the post type. * * @return void */ function wp_kama_registered_post_type_action( $post_type, $post_type_object ){ // action... }
- $post_type(string)
- Post type.
- $post_type_object(WP_Post_Type)
- Arguments used to register the post type.
Changelog
Since 6.0.0 | Introduced. |
Where the hook is called
registered_post_type_(post_type)
wp-includes/post.php 1841
do_action( "registered_post_type_{$post_type}", $post_type, $post_type_object );