Changeset 51837
- Timestamp:
- 09/21/2021 06:19:19 PM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin-header.php
r50996 r51837 133 133 * Fires in head section for a specific admin page. 134 134 * 135 * The dynamic portion of the hook , `$hook_suffix`, refers to the hook suffix135 * The dynamic portion of the hook name, `$hook_suffix`, refers to the hook suffix 136 136 * for the admin page. 137 137 * -
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r51678 r51837 226 226 * - `install_plugins_table_api_args_recommended` 227 227 * - `install_plugins_table_api_args_upload` 228 * - `install_plugins_table_api_args_search` 229 * - `install_plugins_table_api_args_beta` 228 230 * 229 231 * @since 3.7.0 -
trunk/src/wp-admin/includes/media.php
r51484 r51837 578 578 * (pre-3.5.0) media upload popup. 579 579 * 580 * The dynamic portion of the hook , `$content_func`, refers to the form580 * The dynamic portion of the hook name, `$content_func`, refers to the form 581 581 * callback for the media upload type. 582 582 * -
trunk/src/wp-admin/includes/meta-boxes.php
r51732 r51837 1582 1582 * Fires after all built-in meta boxes have been added, contextually for the given post type. 1583 1583 * 1584 * The dynamic portion of the hook , `$post_type`, refers to the post type of the post.1584 * The dynamic portion of the hook name, `$post_type`, refers to the post type of the post. 1585 1585 * 1586 1586 * Possible hook names include: -
trunk/src/wp-admin/includes/misc.php
r50025 r51837 717 717 * Filters a screen option value before it is set. 718 718 * 719 * The dynamic portion of the hook , `$option`, refers to the option name.719 * The dynamic portion of the hook name, `$option`, refers to the option name. 720 720 * 721 721 * Returning false from the filter will skip saving the current option. -
trunk/src/wp-admin/plugin-install.php
r51475 r51837 64 64 * Fires before each tab on the Install Plugins screen is loaded. 65 65 * 66 * The dynamic portion of the action hook, `$tab`, allows for targeting 67 * individual tabs, for instance 'install_plugins_pre_plugin-information'. 66 * The dynamic portion of the hook name, `$tab`, allows for targeting 67 * individual tabs. 68 * 69 * Possible hook names include: 70 * 71 * - `install_plugins_pre_beta` 72 * - `install_plugins_pre_favorites` 73 * - `install_plugins_pre_featured` 74 * - `install_plugins_pre_plugin-information` 75 * - `install_plugins_pre_popular` 76 * - `install_plugins_pre_recommended` 77 * - `install_plugins_pre_search` 78 * - `install_plugins_pre_upload` 68 79 * 69 80 * @since 2.7.0 … … 165 176 * Fires after the plugins list table in each tab of the Install Plugins screen. 166 177 * 167 * The dynamic portion of the action hook, `$tab`, allows for targeting 168 * individual tabs, for instance 'install_plugins_plugin-information'. 178 * The dynamic portion of the hook name, `$tab`, allows for targeting 179 * individual tabs. 180 * 181 * Possible hook names include: 182 * 183 * - `install_plugins_beta` 184 * - `install_plugins_favorites` 185 * - `install_plugins_featured` 186 * - `install_plugins_plugin-information` 187 * - `install_plugins_popular` 188 * - `install_plugins_recommended` 189 * - `install_plugins_search` 190 * - `install_plugins_upload` 169 191 * 170 192 * @since 2.7.0 -
trunk/src/wp-admin/user-edit.php
r51475 r51837 554 554 * Filters a user contactmethod label. 555 555 * 556 * The dynamic portion of the filter hook, `$name`, refers to556 * The dynamic portion of the hook name, `$name`, refers to 557 557 * each of the keys in the contact methods array. 558 558 * -
trunk/src/wp-includes/category-template.php
r51327 r51837 1344 1344 * Filters the term links for a given taxonomy. 1345 1345 * 1346 * The dynamic portion of the filtername, `$taxonomy`, refers1346 * The dynamic portion of the hook name, `$taxonomy`, refers 1347 1347 * to the taxonomy slug. 1348 1348 * -
trunk/src/wp-includes/comment-template.php
r51327 r51837 2647 2647 * Filters a comment form field for display. 2648 2648 * 2649 * The dynamic portion of the filter hook, `$name`, refers to the name2649 * The dynamic portion of the hook name, `$name`, refers to the name 2650 2650 * of the comment form field. 2651 2651 * -
trunk/src/wp-includes/comment.php
r50641 r51837 1827 1827 * refer to the old and new comment statuses, respectively. 1828 1828 * 1829 * Possible hook names include: 1830 * 1831 * - `comment_unapproved_to_approved` 1832 * - `comment_spam_to_approved` 1833 * - `comment_approved_to_unapproved` 1834 * - `comment_spam_to_unapproved` 1835 * - `comment_unapproved_to_spam` 1836 * - `comment_approved_to_spam` 1837 * 1829 1838 * @since 2.7.0 1830 1839 * … … 1839 1848 * refer to the new comment status, and the type of comment, respectively. 1840 1849 * 1841 * Typical comment types include an empty string (standard comment), 'pingback', 1842 * or 'trackback'. 1850 * Typical comment types include 'comment', 'pingback', or 'trackback'. 1851 * 1852 * Possible hook names include: 1853 * 1854 * - `comment_approved_comment` 1855 * - `comment_approved_pingback` 1856 * - `comment_approved_trackback` 1857 * - `comment_unapproved_comment` 1858 * - `comment_unapproved_pingback` 1859 * - `comment_unapproved_trackback` 1860 * - `comment_spam_comment` 1861 * - `comment_spam_pingback` 1862 * - `comment_spam_trackback` 1843 1863 * 1844 1864 * @since 2.7.0 -
trunk/src/wp-includes/l10n.php
r51599 r51837 192 192 * Filters text with its translation for a domain. 193 193 * 194 * The dynamic portion of the hook , `$domain`, refers to the text domain.194 * The dynamic portion of the hook name, `$domain`, refers to the text domain. 195 195 * 196 196 * @since 5.5.0 … … 260 260 * Filters text with its translation based on context information for a domain. 261 261 * 262 * The dynamic portion of the hook , `$domain`, refers to the text domain.262 * The dynamic portion of the hook name, `$domain`, refers to the text domain. 263 263 * 264 264 * @since 5.5.0 … … 483 483 * Filters the singular or plural form of a string for a domain. 484 484 * 485 * The dynamic portion of the hook , `$domain`, refers to the text domain.485 * The dynamic portion of the hook name, `$domain`, refers to the text domain. 486 486 * 487 487 * @since 5.5.0 … … 543 543 * Filters the singular or plural form of a string with gettext context for a domain. 544 544 * 545 * The dynamic portion of the hook , `$domain`, refers to the text domain.545 * The dynamic portion of the hook name, `$domain`, refers to the text domain. 546 546 * 547 547 * @since 5.5.0 -
trunk/src/wp-includes/meta.php
r51326 r51837 57 57 * Short-circuits adding metadata of a specific type. 58 58 * 59 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type59 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 60 60 * (post, comment, term, user, or any other type with an associated meta table). 61 61 * Returning a non-null value will effectively short-circuit the function. … … 97 97 * Fires immediately before meta of a specific type is added. 98 98 * 99 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type99 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 100 100 * (post, comment, term, user, or any other type with an associated meta table). 101 101 * … … 135 135 * Fires immediately after meta of a specific type is added. 136 136 * 137 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type137 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 138 138 * (post, comment, term, user, or any other type with an associated meta table). 139 139 * … … 210 210 * Short-circuits updating metadata of a specific type. 211 211 * 212 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type212 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 213 213 * (post, comment, term, user, or any other type with an associated meta table). 214 214 * Returning a non-null value will effectively short-circuit the function. … … 269 269 * Fires immediately before updating metadata of a specific type. 270 270 * 271 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type271 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 272 272 * (post, comment, term, user, or any other type with an associated meta table). 273 273 * … … 315 315 * Fires immediately after updating metadata of a specific type. 316 316 * 317 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type317 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 318 318 * (post, comment, term, user, or any other type with an associated meta table). 319 319 * … … 402 402 * Short-circuits deleting metadata of a specific type. 403 403 * 404 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type404 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 405 405 * (post, comment, term, user, or any other type with an associated meta table). 406 406 * Returning a non-null value will effectively short-circuit the function. … … 457 457 * Fires immediately before deleting metadata of a specific type. 458 458 * 459 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type459 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 460 460 * (post, comment, term, user, or any other type with an associated meta table). 461 461 * … … 507 507 * Fires immediately after deleting metadata of a specific type. 508 508 * 509 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type509 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 510 510 * (post, comment, term, user, or any other type with an associated meta table). 511 511 * … … 609 609 * Short-circuits the return value of a meta field. 610 610 * 611 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type611 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 612 612 * (post, comment, term, user, or any other type with an associated meta table). 613 613 * Returning a non-null value will effectively short-circuit the function. … … 693 693 * Filters the default metadata value for a specified meta key and object. 694 694 * 695 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type695 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 696 696 * (post, comment, term, user, or any other type with an associated meta table). 697 697 * … … 806 806 * Short-circuits the return value when fetching a meta field by meta ID. 807 807 * 808 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type808 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 809 809 * (post, comment, term, user, or any other type with an associated meta table). 810 810 * Returning a non-null value will effectively short-circuit the function. … … 880 880 * Short-circuits updating metadata of a specific type by meta ID. 881 881 * 882 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type882 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 883 883 * (post, comment, term, user, or any other type with an associated meta table). 884 884 * Returning a non-null value will effectively short-circuit the function. … … 1003 1003 * Short-circuits deleting metadata of a specific type by meta ID. 1004 1004 * 1005 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type1005 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 1006 1006 * (post, comment, term, user, or any other type with an associated meta table). 1007 1007 * Returning a non-null value will effectively short-circuit the function. … … 1037 1037 * Fires immediately before deleting post or comment metadata of a specific type. 1038 1038 * 1039 * The dynamic portion of the hook , `$meta_type`, refers to the meta1039 * The dynamic portion of the hook name, `$meta_type`, refers to the meta 1040 1040 * object type (post or comment). 1041 1041 * … … 1068 1068 * Fires immediately after deleting post or comment metadata of a specific type. 1069 1069 * 1070 * The dynamic portion of the hook , `$meta_type`, refers to the meta1070 * The dynamic portion of the hook name, `$meta_type`, refers to the meta 1071 1071 * object type (post or comment). 1072 1072 * … … 1129 1129 * Short-circuits updating the metadata cache of a specific type. 1130 1130 * 1131 * The dynamic portion of the hook , `$meta_type`, refers to the meta object type1131 * The dynamic portion of the hook name, `$meta_type`, refers to the meta object type 1132 1132 * (post, comment, term, user, or any other type with an associated meta table). 1133 1133 * Returning a non-null value will effectively short-circuit the function. … … 1775 1775 * Filters the object subtype identifier for a non-standard object type. 1776 1776 * 1777 * The dynamic portion of the hook , `$object_type`, refers to the meta object type1777 * The dynamic portion of the hook name, `$object_type`, refers to the meta object type 1778 1778 * (post, comment, term, user, or any other type with an associated meta table). 1779 1779 * -
trunk/src/wp-includes/post.php
r51430 r51837 5113 5113 * refer to the old and new post statuses, respectively. 5114 5114 * 5115 * Possible hook names include: 5116 * 5117 * - `draft_to_publish` 5118 * - `publish_to_trash` 5119 * - `pending_to_draft` 5120 * 5115 5121 * @since 2.3.0 5116 5122 * -
trunk/src/wp-includes/taxonomy.php
r51796 r51837 946 946 * Filters a taxonomy term object. 947 947 * 948 * The dynamic portion of the filtername, `$taxonomy`, refers948 * The dynamic portion of the hook name, `$taxonomy`, refers 949 949 * to the slug of the term's taxonomy. 950 950 * … … 1660 1660 * Filters a term field to edit before it is sanitized. 1661 1661 * 1662 * The dynamic portion of the filtername, `$field`, refers to the term field.1662 * The dynamic portion of the hook name, `$field`, refers to the term field. 1663 1663 * 1664 1664 * @since 2.3.0 … … 1693 1693 * Filters a term field value before it is sanitized. 1694 1694 * 1695 * The dynamic portion of the filtername, `$field`, refers to the term field.1695 * The dynamic portion of the hook name, `$field`, refers to the term field. 1696 1696 * 1697 1697 * @since 2.3.0 … … 1732 1732 * Filters the term field for use in RSS. 1733 1733 * 1734 * The dynamic portion of the filtername, `$field`, refers to the term field.1734 * The dynamic portion of the hook name, `$field`, refers to the term field. 1735 1735 * 1736 1736 * @since 2.3.0 … … 1758 1758 * Filters the term field sanitized for display. 1759 1759 * 1760 * The dynamic portion of the filtername, `$field`, refers to the term field name.1760 * The dynamic portion of the hook name, `$field`, refers to the term field name. 1761 1761 * 1762 1762 * @since 2.3.0
Note: See TracChangeset
for help on using the changeset viewer.