after_setup_theme
This is a WordPress - after_setup_theme hook. The plugin just uses it.
Fires after the theme is loaded.
Usage
add_action( 'after_setup_theme', 'wp_kama_after_setup_theme_action' );
/**
* Function for `after_setup_theme` action-hook.
*
* @return void
*/
function wp_kama_after_setup_theme_action(){
// action...
}Where the hook is called
In file: /php/wp-settings-cli.php
after_setup_theme
wp-cli/php/wp-settings-cli.php 430
do_action( 'after_setup_theme' );