Changeset 53170
- Timestamp:
- 04/13/2022 03:02:43 AM (20 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-post-type.php
r53126 r53170 446 446 * Filters the arguments for registering a specific post type. 447 447 * 448 * The dynamic portion of the filter name, `$this->name`, refers to the post type key. 448 * The dynamic portion of the filter name, `$post_type`, refers to the post type key. 449 * 450 * Possible hook names include: 451 * 452 * - `register_post_post_type_args` 453 * - `register_page_post_type_args` 449 454 * 450 455 * @since 6.0.0 -
trunk/src/wp-includes/class-wp-taxonomy.php
r53126 r53170 321 321 * Filters the arguments for registering a specific taxonomy. 322 322 * 323 * The dynamic portion of the filter name, `$this->name`, refers to the taxonomy key. 323 * The dynamic portion of the filter name, `$taxonomy`, refers to the taxonomy key. 324 * 325 * Possible hook names include: 326 * 327 * - `register_category_taxonomy_args` 328 * - `register_post_tag_taxonomy_args` 324 329 * 325 330 * @since 6.0.0 -
trunk/src/wp-includes/post.php
r53126 r53170 1715 1715 * The dynamic portion of the filter name, `$post_type`, refers to the post type key. 1716 1716 * 1717 * Possible hook names include: 1718 * 1719 * - `registered_post_type_post` 1720 * - `registered_post_type_page` 1721 * 1717 1722 * @since 6.0.0 1718 1723 * -
trunk/src/wp-includes/taxonomy.php
r53126 r53170 534 534 * 535 535 * The dynamic portion of the filter name, `$taxonomy`, refers to the taxonomy key. 536 * 537 * Possible hook names include: 538 * 539 * - `registered_taxonomy_category` 540 * - `registered_taxonomy_post_tag` 536 541 * 537 542 * @since 6.0.0
Note: See TracChangeset
for help on using the changeset viewer.