wc_is_wp_default_theme_active()

Is the site using a default WP theme?


Description Description


Return Return

(boolean)


Top ↑

Source Source

File: includes/wc-core-functions.php

function wc_is_wp_default_theme_active() {
	return wc_is_active_theme(
		array(
			'twentytwenty',
			'twentynineteen',
			'twentyseventeen',
			'twentysixteen',
			'twentyfifteen',
			'twentyfourteen',
			'twentythirteen',
			'twentyeleven',
			'twentytwelve',
			'twentyten',
		)
	);
}


Top ↑

User Contributed Notes User Contributed Notes

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