wc_is_wp_default_theme_active()
Is the site using a default WP theme?
Description Description
Return Return
(boolean)
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',
)
);
}