diff --git a/src/wp-admin/edit-tag-form.php b/src/wp-admin/edit-tag-form.php
index b8f4125315..dd611dacbb 100644
--- a/src/wp-admin/edit-tag-form.php
+++ b/src/wp-admin/edit-tag-form.php
@@ -17,14 +17,18 @@ if ( empty($tag_ID) ) { ?>
}
// Back compat hooks
-if ( 'category' == $taxonomy )
- do_action('edit_category_form_pre', $tag );
-elseif ( 'link_category' == $taxonomy )
- do_action('edit_link_category_form_pre', $tag );
-else
- do_action('edit_tag_form_pre', $tag);
-
-do_action($taxonomy . '_pre_edit_form', $tag, $taxonomy); ?>
+if ( 'category' == $taxonomy ) {
+ /** This action is documented in wp-admin/edit-tags.php */
+ do_action( 'edit_category_form_pre', $tag );
+} elseif ( 'link_category' == $taxonomy ) {
+ /** This action is documented in wp-admin/edit-tags.php */
+ do_action( 'edit_link_category_form_pre', $tag );
+} else {
+ /** This action is documented in wp-admin/edit-tags.php */
+ do_action( 'edit_tag_form_pre', $tag );
+}
+/** This action is documented in wp-admin/edit-tags.php */
+do_action( "{$taxonomy}_pre_edit_form", $tag, $taxonomy ); ?>
diff --git a/src/wp-admin/edit-tags.php b/src/wp-admin/edit-tags.php
index 0a046370b3..795879dbc1 100644
--- a/src/wp-admin/edit-tags.php
+++ b/src/wp-admin/edit-tags.php
@@ -281,6 +281,13 @@ $messages['post_tag'] = array(
6 => __( 'Tags deleted.' )
);
+/**
+ * Filter the messages displayed when a tag is updated.
+ *
+ * @since 3.7.0
+ *
+ * @param array $messages The messages to be displayed.
+ */
$messages = apply_filters( 'term_updated_messages', $messages );
$message = false;
@@ -340,7 +347,17 @@ endif; ?>
tag to category converter.'), 'import.php') ;?>
@@ -368,20 +385,62 @@ endif;
}
if ( current_user_can($tax->cap->edit_terms) ) {
- // Back compat hooks. Deprecated in preference to {$taxonomy}_pre_add_form
- if ( 'category' == $taxonomy )
- do_action('add_category_form_pre', (object)array('parent' => 0) );
- elseif ( 'link_category' == $taxonomy )
- do_action('add_link_category_form_pre', (object)array('parent' => 0) );
- else
- do_action('add_tag_form_pre', $taxonomy);
+ if ( 'category' == $taxonomy ) {
+ /**
+ * Fires before the Add Category form.
+ *
+ * @since 2.1.0
+ * @deprecated 3.0.0 Use {$taxonomy}_pre_add_form instead.
+ *
+ * @param object $arg Optional arguments cast to an object.
+ */
+ do_action( 'add_category_form_pre', (object) array( 'parent' => 0 ) );
+ } elseif ( 'link_category' == $taxonomy ) {
+ /**
+ * Fires before the link category form.
+ *
+ * @since 2.3.0
+ * @deprecated 3.0.0 Use {$taxonomy}_pre_add_form instead.
+ *
+ * @param object $arg Optional arguments cast to an object.
+ */
+ do_action( 'add_link_category_form_pre', (object) array( 'parent' => 0 ) );
+ } else {
+ /**
+ * Fires before the Add Tag form.
+ *
+ * @since 2.5.0
+ * @deprecated 3.0.0 Use {$taxonomy}_pre_add_form instead.
+ *
+ * @param string $taxonomy The taxonomy slug.
+ */
+ do_action( 'add_tag_form_pre', $taxonomy );
+ }
- do_action($taxonomy . '_pre_add_form', $taxonomy);
+ /**
+ * Fires before the Add Term form for all taxonomies.
+ *
+ * The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.
+ *
+ * @since 3.0.0
+ *
+ * @param string $taxonomy The taxonomy slug.
+ */
+ do_action( "{$taxonomy}_pre_add_form", $taxonomy );
?>
labels->add_new_item; ?>
-
labels->add_new_item );
-// Back compat hooks. Deprecated in preference to {$taxonomy}_add_form
-if ( 'category' == $taxonomy )
- do_action('edit_category_form', (object)array('parent' => 0) );
-elseif ( 'link_category' == $taxonomy )
- do_action('edit_link_category_form', (object)array('parent' => 0) );
-else
- do_action('add_tag_form', $taxonomy);
+if ( 'category' == $taxonomy ) {
+ /**
+ * Fires at the end of the Edit Category form.
+ *
+ * @since 2.1.0
+ * @deprecated 3.0.0 Use {$taxonomy}_add_form instead.
+ *
+ * @param object $arg Optional arguments cast to an object.
+ */
+ do_action( 'edit_category_form', (object) array( 'parent' => 0 ) );
+} elseif ( 'link_category' == $taxonomy ) {
+ /**
+ * Fires at the end of the Edit Link form.
+ *
+ * @since 2.3.0
+ * @deprecated 3.0.0 Use {$taxonomy}_add_form instead.
+ *
+ * @param object $arg Optional arguments cast to an object.
+ */
+ do_action( 'edit_link_category_form', (object) array( 'parent' => 0 ) );
+} else {
+ /**
+ * Fires at the end of the Add Tag form.
+ *
+ * @since 2.7.0
+ * @deprecated 3.0.0 Use {$taxonomy}_add_form instead.
+ *
+ * @param string $taxonomy The taxonomy slug.
+ */
+ do_action( 'add_tag_form', $taxonomy );
+}
-do_action($taxonomy . '_add_form', $taxonomy);
+/**
+ * Fires at the end of the Add Term form for all taxonomies.
+ *
+ * The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.
+ *
+ * @since 3.0.0
+ *
+ * @param string $taxonomy The taxonomy slug.
+ */
+do_action( "{$taxonomy}_add_form", $taxonomy );
?>