diff options
-rw-r--r-- | wp-inst/wp-admin/admin-db.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wp-inst/wp-admin/admin-db.php b/wp-inst/wp-admin/admin-db.php index 43d1f03..c744144 100644 --- a/wp-inst/wp-admin/admin-db.php +++ b/wp-inst/wp-admin/admin-db.php @@ -124,6 +124,7 @@ function wp_insert_category($catarr) { do_action('create_category', $cat_ID); do_action('add_category', $cat_ID); } + $cat_ID = apply_filters( "cat_id_filter", $cat_ID ); return $cat_ID; } |