function myprefix_remove_customizer_google_fonts( $array ) {
if ( is_customize_preview() ) {
$array = array();
}
return $array;
}
add_filter( 'wpex_google_fonts_array', 'myprefix_remove_customizer_google_fonts' );
function myprefix_remove_customizer_google_fonts( $array ) {
if ( is_customize_preview() ) {
$array = array();
}
return $array;
}
add_filter( 'wpex_google_fonts_array', 'myprefix_remove_customizer_google_fonts' );