woocommerce_newly_installed action-hookWC 6.5.0

Run when WooCommerce has been installed for the first time.

Usage

add_action( 'woocommerce_newly_installed', 'wp_kama_woocommerce_newly_installed_action' );

/**
 * Function for `woocommerce_newly_installed` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_newly_installed_action(){

	// action...
}

Changelog

Since 6.5.0 Introduced.

Where the hook is called

WC_Install::newly_installed()
woocommerce_newly_installed
woocommerce/includes/class-wc-install.php 342
do_action( 'woocommerce_newly_installed' );

Where the hook is used in WooCommerce

woocommerce/includes/class-wc-install.php 309
add_action( 'woocommerce_newly_installed', array( __CLASS__, 'maybe_enable_hpos' ), 20 );
woocommerce/includes/class-wc-install.php 310
add_action( 'woocommerce_newly_installed', array( __CLASS__, 'add_coming_soon_option' ), 20 );
woocommerce/includes/class-wc-install.php 311
add_action( 'woocommerce_newly_installed', array( __CLASS__, 'enable_email_improvements' ), 20 );
woocommerce/includes/class-wc-install.php 312
add_action( 'woocommerce_newly_installed', array( __CLASS__, 'enable_new_payments_settings_page' ), 20 );
woocommerce/includes/class-woocommerce.php 307
add_action( 'woocommerce_newly_installed', 'wc_set_hooked_blocks_version', 10 );