wp_meta
Fires before displaying echoed content in the sidebar.
Description
Parameters (2)
- 0. $array (callback) =>
array(&$this, 'add_minimeta')
- The array.
- 1. $int (int)
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_meta', $array, $int );
- The following example is for adding a hook callback.
- // define the wp_meta callback
- function action_wp_meta( $array, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_meta', 'action_wp_meta', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_meta', 'action_wp_meta', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /classes/class-s2-core.php
- add_action('wp_meta', array(&$this, 'add_minimeta'), 0);