<tag>
The WordPress Core tag hook.
Description
Parameters (1)
- 0. $args (unknown)
- The args.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( '{$tag}', $args );
- The following example is for adding a hook callback.
- // define the <tag> callback
- function action_tag( $args ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "{$tag}", 'action_tag', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "{$tag}", 'action_tag', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/plugin.php
- do_action_ref_array( $tag, $args );