Changeset 35912 for trunk/src/wp-includes/plugin.php
- Timestamp:
- 12/14/2015 02:35:29 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/plugin.php
r35911 r35912 192 192 * @global array $wp_current_filter Stores the list of current filters with the current one last. 193 193 * 194 * @param string $tag The name of the filter hook.195 * @param mixed $value The value on which the filters hooked to `$tag` are applied on.196 * @param mixed $var 194 * @param string $tag The name of the filter hook. 195 * @param mixed $value The value on which the filters hooked to `$tag` are applied on. 196 * @param mixed $var,... Additional variables passed to the functions hooked to `$tag`. 197 197 * @return mixed The filtered value after all hooked functions are applied to it. 198 198 */ … … 476 476 * @global array $wp_current_filter Stores the list of current filters with the current one last 477 477 * 478 * @param string $tag The name of the action to be executed.479 * @param mixed $arg Optional. Additional arguments which are passed on to the480 * functions hooked to the action. Default empty.478 * @param string $tag The name of the action to be executed. 479 * @param mixed $arg,... Optional. Additional arguments which are passed on to the 480 * functions hooked to the action. Default empty. 481 481 */ 482 482 function do_action($tag, $arg = '') {
Note: See TracChangeset
for help on using the changeset viewer.