Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

WC_Install::maybe_enable_homescreen()

Check if the homepage should be enabled and set the appropriate option if thats the case.


Description Description


Source Source

File: includes/class-wc-install.php

	private static function maybe_enable_homescreen() {
		if ( self::is_new_install() && ! get_option( 'woocommerce_homescreen_enabled' ) ) {
			add_option( 'woocommerce_homescreen_enabled', 'yes' );
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.