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:
parent
5efcc6e8fc
commit
2421e0ecc6
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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 );
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user