after_setup_theme action-hookWP-CLI 1.0

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 433
do_action( 'after_setup_theme' );

Where the hook is used in WP CLI

Usage not found.