Fire an action when a post type or taxonomy is registered so plugins can react. Fixes #18802 props simonwheatley.

git-svn-id: https://develop.svn.wordpress.org/trunk@18833 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2011-09-30 09:53:35 +00:00
parent 5efcc6e8fc
commit 2421e0ecc6
2 changed files with 4 additions and 0 deletions

View File

@ -1037,6 +1037,8 @@ function register_post_type($post_type, $args = array()) {
register_taxonomy_for_object_type( $taxonomy, $post_type );
}
do_action( 'registered_post_type', $post_type, $args );
return $args;
}

View File

@ -363,6 +363,8 @@ function register_taxonomy( $taxonomy, $object_type, $args = array() ) {
// register callback handling for metabox
add_filter('wp_ajax_add-' . $taxonomy, '_wp_ajax_add_hierarchical_term');
do_action( 'registered_taxonomy', $taxonomy, $object_type, $args );
}
/**