Changeset 30655 for trunk/src/wp-includes/meta.php
- Timestamp:
- 11/30/2014 12:02:44 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/meta.php
r30617 r30655 55 55 * Filter whether to add metadata of a specific type. 56 56 * 57 * The dynamic portion of the hook, $meta_type, refers to the meta57 * The dynamic portion of the hook, `$meta_type`, refers to the meta 58 58 * object type (comment, post, or user). Returning a non-null value 59 59 * will effectively short-circuit the function. … … 83 83 * Fires immediately before meta of a specific type is added. 84 84 * 85 * The dynamic portion of the hook, $meta_type, refers to the meta85 * The dynamic portion of the hook, `$meta_type`, refers to the meta 86 86 * object type (comment, post, or user). 87 87 * … … 110 110 * Fires immediately after meta of a specific type is added. 111 111 * 112 * The dynamic portion of the hook, $meta_type, refers to the meta112 * The dynamic portion of the hook, `$meta_type`, refers to the meta 113 113 * object type (comment, post, or user). 114 114 * … … 170 170 * Filter whether to update metadata of a specific type. 171 171 * 172 * The dynamic portion of the hook, $meta_type, refers to the meta172 * The dynamic portion of the hook, `$meta_type`, refers to the meta 173 173 * object type (comment, post, or user). Returning a non-null value 174 174 * will effectively short-circuit the function. … … 217 217 * Fires immediately before updating metadata of a specific type. 218 218 * 219 * The dynamic portion of the hook, $meta_type, refers to the meta219 * The dynamic portion of the hook, `$meta_type`, refers to the meta 220 220 * object type (comment, post, or user). 221 221 * … … 256 256 * Fires immediately after updating metadata of a specific type. 257 257 * 258 * The dynamic portion of the hook, $meta_type, refers to the meta258 * The dynamic portion of the hook, `$meta_type`, refers to the meta 259 259 * object type (comment, post, or user). 260 260 * … … 331 331 * Filter whether to delete metadata of a specific type. 332 332 * 333 * The dynamic portion of the hook, $meta_type, refers to the meta333 * The dynamic portion of the hook, `$meta_type`, refers to the meta 334 334 * object type (comment, post, or user). Returning a non-null value 335 335 * will effectively short-circuit the function. … … 370 370 * Fires immediately before deleting metadata of a specific type. 371 371 * 372 * The dynamic portion of the hook, $meta_type, refers to the meta372 * The dynamic portion of the hook, `$meta_type`, refers to the meta 373 373 * object type (comment, post, or user). 374 374 * … … 412 412 * Fires immediately after deleting metadata of a specific type. 413 413 * 414 * The dynamic portion of the hook name, $meta_type, refers to the meta414 * The dynamic portion of the hook name, `$meta_type`, refers to the meta 415 415 * object type (comment, post, or user). 416 416 * … … 465 465 * Filter whether to retrieve metadata of a specific type. 466 466 * 467 * The dynamic portion of the hook, $meta_type, refers to the meta467 * The dynamic portion of the hook, `$meta_type`, refers to the meta 468 468 * object type (comment, post, or user). Returning a non-null value 469 469 * will effectively short-circuit the function. … … 725 725 * Fires immediately before deleting post or comment metadata of a specific type. 726 726 * 727 * The dynamic portion of the hook, $meta_type, refers to the meta727 * The dynamic portion of the hook, `$meta_type`, refers to the meta 728 728 * object type (post or comment). 729 729 * … … 749 749 * Fires immediately after deleting post or comment metadata of a specific type. 750 750 * 751 * The dynamic portion of the hook, $meta_type, refers to the meta751 * The dynamic portion of the hook, `$meta_type`, refers to the meta 752 752 * object type (post or comment). 753 753 * … … 1573 1573 * Filter the sanitization of a specific meta key of a specific meta type. 1574 1574 * 1575 * The dynamic portions of the hook name, $meta_type and $meta_key, refer to the 1576 * metadata object type (comment, post, or user) and the meta key value, 1575 * The dynamic portions of the hook name, `$meta_type`, and `$meta_key`, 1576 * refer to the metadata object type (comment, post, or user) and the meta 1577 * key value, 1577 1578 * respectively. 1578 1579 *
Note: See TracChangeset
for help on using the changeset viewer.