Changeset 42822
- Timestamp:
- 03/10/2018 02:00:10 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tag-form.php
r42343 r42822 20 20 * @deprecated 3.0.0 Use {$taxonomy}_pre_edit_form instead. 21 21 * 22 * @param object$tag Current category term object.22 * @param WP_Term $tag Current category term object. 23 23 */ 24 24 do_action( 'edit_category_form_pre', $tag ); … … 30 30 * @deprecated 3.0.0 Use {$taxonomy}_pre_edit_form instead. 31 31 * 32 * @param object$tag Current link category term object.32 * @param WP_Term $tag Current link category term object. 33 33 */ 34 34 do_action( 'edit_link_category_form_pre', $tag ); … … 40 40 * @deprecated 3.0.0 Use {$taxonomy}_pre_edit_form instead. 41 41 * 42 * @param object$tag Current tag term object.42 * @param WP_Term $tag Current tag term object. 43 43 */ 44 44 do_action( 'edit_tag_form_pre', $tag ); … … 63 63 * @since 3.0.0 64 64 * 65 * @param object$tag Current taxonomy term object.66 * @param string $taxonomy Current $taxonomy slug.65 * @param WP_Term $tag Current taxonomy term object. 66 * @param string $taxonomy Current $taxonomy slug. 67 67 */ 68 68 do_action( "{$taxonomy}_pre_edit_form", $tag, $taxonomy ); ?> … … 114 114 * @since 4.5.0 115 115 * 116 * @param object$tag Current taxonomy term object.117 * @param string $taxonomy Current $taxonomy slug.116 * @param WP_Term $tag Current taxonomy term object. 117 * @param string $taxonomy Current $taxonomy slug. 118 118 */ 119 119 do_action( "{$taxonomy}_term_edit_form_top", $tag, $taxonomy ); … … 143 143 * @since 4.4.0 The `$tag` parameter was added. 144 144 * 145 * @param string $slug The editable slug. Will be either a term slug or post URI depending146 * upon the context in which it is evaluated.147 * @param object|WP_Post $tag Term or WP_Post object.145 * @param string $slug The editable slug. Will be either a term slug or post URI depending 146 * upon the context in which it is evaluated. 147 * @param WP_Term|WP_Post $tag Term or WP_Post object. 148 148 */ 149 149 $slug = isset( $tag->slug ) ? apply_filters( 'editable_slug', $tag->slug, $tag ) : ''; … … 196 196 * @deprecated 3.0.0 Use {$taxonomy}_edit_form_fields instead. 197 197 * 198 * @param object$tag Current category term object.198 * @param WP_Term $tag Current category term object. 199 199 */ 200 200 do_action( 'edit_category_form_fields', $tag ); … … 206 206 * @deprecated 3.0.0 Use {$taxonomy}_edit_form_fields instead. 207 207 * 208 * @param object$tag Current link category term object.208 * @param WP_Term $tag Current link category term object. 209 209 */ 210 210 do_action( 'edit_link_category_form_fields', $tag ); … … 216 216 * @deprecated 3.0.0 Use {$taxonomy}_edit_form_fields instead. 217 217 * 218 * @param object$tag Current tag term object.218 * @param WP_Term $tag Current tag term object. 219 219 */ 220 220 do_action( 'edit_tag_form_fields', $tag ); … … 228 228 * @since 3.0.0 229 229 * 230 * @param object$tag Current taxonomy term object.231 * @param string $taxonomy Current taxonomy slug.230 * @param WP_Term $tag Current taxonomy term object. 231 * @param string $taxonomy Current taxonomy slug. 232 232 */ 233 233 do_action( "{$taxonomy}_edit_form_fields", $tag, $taxonomy ); … … 249 249 * @deprecated 3.0.0 Use {$taxonomy}_edit_form instead. 250 250 * 251 * @param object$tag Current taxonomy term object.251 * @param WP_Term $tag Current taxonomy term object. 252 252 */ 253 253 do_action( 'edit_tag_form', $tag ); … … 260 260 * @since 3.0.0 261 261 * 262 * @param object$tag Current taxonomy term object.263 * @param string $taxonomy Current taxonomy slug.262 * @param WP_Term $tag Current taxonomy term object. 263 * @param string $taxonomy Current taxonomy slug. 264 264 */ 265 265 do_action( "{$taxonomy}_edit_form", $tag, $taxonomy );
Note: See TracChangeset
for help on using the changeset viewer.