Changeset 45420 for trunk/src/wp-includes/class-wp-hook.php
- Timestamp:
- 05/25/2019 10:51:14 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-hook.php
r42746 r45420 254 254 255 255 /** 256 * Calls the callback functions added to a filter hook.256 * Calls the callback functions that have been added to a filter hook. 257 257 * 258 258 * @since 4.7.0 259 259 * 260 260 * @param mixed $value The value to filter. 261 * @param array $args A rguments to pass to callbacks.261 * @param array $args Additional parameters to pass to the callback functions. 262 262 * @return mixed The filtered value after all hooked functions are applied to it. 263 263 */ … … 300 300 301 301 /** 302 * Executes the callback functions hooked on a specificaction hook.303 * 304 * @since 4.7.0 305 * 306 * @param mixed $args Arguments to pass to the hook callbacks.302 * Calls the callback functions that have been added to an action hook. 303 * 304 * @since 4.7.0 305 * 306 * @param array $args Parameters to pass to the callback functions. 307 307 */ 308 308 public function do_action( $args ) {
Note: See TracChangeset
for help on using the changeset viewer.