Changeset 48185 for trunk/src/wp-includes/option.php
- Timestamp:
- 06/26/2020 06:47:28 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/option.php
r48121 r48185 41 41 * The dynamic portion of the hook name, `$option`, refers to the option name. 42 42 * 43 * Passing a truthy value tothe filter will short-circuit retrieving43 * Returning a truthy value from the filter will short-circuit retrieving 44 44 * the option value, returning the passed value instead. 45 45 * … … 688 688 * The dynamic portion of the hook name, `$transient`, refers to the transient name. 689 689 * 690 * Passing a truthy value tothe filter will effectively short-circuit retrieval690 * Returning a truthy value from the filter will effectively short-circuit retrieval 691 691 * of the transient, returning the passed value instead. 692 692 * … … 1238 1238 * The dynamic portion of the hook name, `$option`, refers to the option name. 1239 1239 * 1240 * Passing a truthy value to the filter will effectively short-circuit retrieval,1241 * returningthe passed value instead.1240 * Returning a truthy value from the filter will effectively short-circuit retrieval 1241 * and return the passed value instead. 1242 1242 * 1243 1243 * @since 2.9.0 As 'pre_site_option_' . $key … … 1751 1751 * The dynamic portion of the hook name, `$transient`, refers to the transient name. 1752 1752 * 1753 * Passing a truthy value to the filter will effectively short-circuit retrieval,1754 * returningthe passed value instead.1753 * Returning a truthy value from the filter will effectively short-circuit retrieval 1754 * and return the passed value instead. 1755 1755 * 1756 1756 * @since 2.9.0
Note: See TracChangeset
for help on using the changeset viewer.