Changeset 51326
- Timestamp:
- 07/03/2021 09:31:13 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/meta.php (modified) (16 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/meta.php
r50641 r51326 61 61 * Returning a non-null value will effectively short-circuit the function. 62 62 * 63 * Possible hook names include: 64 * 65 * - `add_post_metadata` 66 * - `add_comment_metadata` 67 * - `add_term_metadata` 68 * - `add_user_metadata` 69 * 63 70 * @since 3.1.0 64 71 * … … 93 100 * (post, comment, term, user, or any other type with an associated meta table). 94 101 * 102 * Possible hook names include: 103 * 104 * - `add_post_meta` 105 * - `add_comment_meta` 106 * - `add_term_meta` 107 * - `add_user_meta` 108 * 95 109 * @since 3.1.0 96 110 * … … 123 137 * The dynamic portion of the hook, `$meta_type`, refers to the meta object type 124 138 * (post, comment, term, user, or any other type with an associated meta table). 139 * 140 * Possible hook names include: 141 * 142 * - `added_post_meta` 143 * - `added_comment_meta` 144 * - `added_term_meta` 145 * - `added_user_meta` 125 146 * 126 147 * @since 2.9.0 … … 193 214 * Returning a non-null value will effectively short-circuit the function. 194 215 * 216 * Possible hook names include: 217 * 218 * - `update_post_metadata` 219 * - `update_comment_metadata` 220 * - `update_term_metadata` 221 * - `update_user_metadata` 222 * 195 223 * @since 3.1.0 196 224 * … … 243 271 * The dynamic portion of the hook, `$meta_type`, refers to the meta object type 244 272 * (post, comment, term, user, or any other type with an associated meta table). 273 * 274 * Possible hook names include: 275 * 276 * - `update_post_meta` 277 * - `update_comment_meta` 278 * - `update_term_meta` 279 * - `update_user_meta` 245 280 * 246 281 * @since 2.9.0 … … 282 317 * The dynamic portion of the hook, `$meta_type`, refers to the meta object type 283 318 * (post, comment, term, user, or any other type with an associated meta table). 319 * 320 * Possible hook names include: 321 * 322 * - `updated_post_meta` 323 * - `updated_comment_meta` 324 * - `updated_term_meta` 325 * - `updated_user_meta` 284 326 * 285 327 * @since 2.9.0 … … 364 406 * Returning a non-null value will effectively short-circuit the function. 365 407 * 408 * Possible hook names include: 409 * 410 * - `delete_post_metadata` 411 * - `delete_comment_metadata` 412 * - `delete_term_metadata` 413 * - `delete_user_metadata` 414 * 366 415 * @since 3.1.0 367 416 * … … 411 460 * (post, comment, term, user, or any other type with an associated meta table). 412 461 * 462 * Possible hook names include: 463 * 464 * - `delete_post_meta` 465 * - `delete_comment_meta` 466 * - `delete_term_meta` 467 * - `delete_user_meta` 468 * 413 469 * @since 3.1.0 414 470 * … … 453 509 * The dynamic portion of the hook, `$meta_type`, refers to the meta object type 454 510 * (post, comment, term, user, or any other type with an associated meta table). 511 * 512 * Possible hook names include: 513 * 514 * - `deleted_post_meta` 515 * - `deleted_comment_meta` 516 * - `deleted_term_meta` 517 * - `deleted_user_meta` 455 518 * 456 519 * @since 2.9.0 … … 747 810 * Returning a non-null value will effectively short-circuit the function. 748 811 * 812 * Possible hook names include: 813 * 814 * - `get_post_metadata_by_mid` 815 * - `get_comment_metadata_by_mid` 816 * - `get_term_metadata_by_mid` 817 * - `get_user_metadata_by_mid` 818 * 749 819 * @since 5.0.0 750 820 * … … 813 883 * (post, comment, term, user, or any other type with an associated meta table). 814 884 * Returning a non-null value will effectively short-circuit the function. 885 * 886 * Possible hook names include: 887 * 888 * - `update_post_metadata_by_mid` 889 * - `update_comment_metadata_by_mid` 890 * - `update_term_metadata_by_mid` 891 * - `update_user_metadata_by_mid` 815 892 * 816 893 * @since 5.0.0 … … 930 1007 * Returning a non-null value will effectively short-circuit the function. 931 1008 * 1009 * Possible hook names include: 1010 * 1011 * - `delete_post_metadata_by_mid` 1012 * - `delete_comment_metadata_by_mid` 1013 * - `delete_term_metadata_by_mid` 1014 * - `delete_user_metadata_by_mid` 1015 * 932 1016 * @since 5.0.0 933 1017 * … … 956 1040 * object type (post or comment). 957 1041 * 1042 * Possible hook names include: 1043 * 1044 * - `delete_postmeta` 1045 * - `delete_commentmeta` 1046 * - `delete_termmeta` 1047 * - `delete_usermeta` 1048 * 958 1049 * @since 3.4.0 959 1050 * … … 980 1071 * object type (post or comment). 981 1072 * 1073 * Possible hook names include: 1074 * 1075 * - `deleted_postmeta` 1076 * - `deleted_commentmeta` 1077 * - `deleted_termmeta` 1078 * - `deleted_usermeta` 1079 * 982 1080 * @since 3.4.0 983 1081 * … … 1034 1132 * (post, comment, term, user, or any other type with an associated meta table). 1035 1133 * Returning a non-null value will effectively short-circuit the function. 1134 * 1135 * Possible hook names include: 1136 * 1137 * - `update_post_metadata_cache` 1138 * - `update_comment_metadata_cache` 1139 * - `update_term_metadata_cache` 1140 * - `update_user_metadata_cache` 1036 1141 * 1037 1142 * @since 5.0.0 … … 1673 1778 * (post, comment, term, user, or any other type with an associated meta table). 1674 1779 * 1780 * Possible hook names include: 1781 * 1782 * - `get_object_subtype_post` 1783 * - `get_object_subtype_comment` 1784 * - `get_object_subtype_term` 1785 * - `get_object_subtype_user` 1786 * 1675 1787 * @since 4.9.8 1676 1788 *
Note: See TracChangeset
for help on using the changeset viewer.