Changeset 45418 for trunk/src/wp-includes/plugin.php
- Timestamp:
- 05/25/2019 09:58:18 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/plugin.php
r42343 r45418 171 171 * @global array $wp_current_filter Stores the list of current filters with the current one last. 172 172 * 173 * @param string $tag 174 * @param mixed $value 175 * @param mixed $var,...Additional variables passed to the functions hooked to `$tag`.173 * @param string $tag The name of the filter hook. 174 * @param mixed $value The value on which the filters hooked to `$tag` are applied on. 175 * @param mixed ...$var Additional variables passed to the functions hooked to `$tag`. 176 176 * @return mixed The filtered value after all hooked functions are applied to it. 177 177 */ … … 422 422 * @global array $wp_current_filter Stores the list of current filters with the current one last 423 423 * 424 * @param string $tag 425 * @param mixed $arg,...Optional. Additional arguments which are passed on to the426 * 424 * @param string $tag The name of the action to be executed. 425 * @param mixed ...$arg Optional. Additional arguments which are passed on to the 426 * functions hooked to the action. Default empty. 427 427 */ 428 428 function do_action( $tag, $arg = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.