From b5a3362c70de4db134b739571c86f23910b107ad Mon Sep 17 00:00:00 2001 From: westi Date: Fri, 30 Sep 2011 09:53:35 +0000 Subject: [PATCH] Fire an action when a post type or taxonomy is registered so plugins can react. Fixes #18802 props simonwheatley. git-svn-id: http://svn.automattic.com/wordpress/trunk@18833 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 2 ++ wp-includes/taxonomy.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/wp-includes/post.php b/wp-includes/post.php index 76fdd6507..f18e94084 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -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; } diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index e231a6cde..19bc1cd79 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -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 ); } /**