after_switch_theme
The WordPress Core after switch theme hook.
Description
Parameters (2)
- 0. $array (callback) =>
array( &$this, 'reset_check_head_count' )
- The array.
- 1. $int (int) =>
10
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'after_switch_theme', $array, $int );
- The following example is for adding a hook callback.
- // define the after_switch_theme callback
- function action_after_switch_theme( $array, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'after_switch_theme', 'action_after_switch_theme', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'after_switch_theme', 'action_after_switch_theme', 10, 2 );
Defined (2)
The action is defined in the following location(s).
- /lib/admin.php
- add_action( 'after_switch_theme', array( &$this, 'reset_check_head_count' ), 10 );
- add_action( 'after_switch_theme', array( &$this, 'check_tmpl_head_attributes' ), 20 );