skip to Main Content

Remove Standard Font Options

This code will remove the standard font options from any theme typography setting such as those located in the Customizer or in Total VC modules.

add_filter( 'wpex_standard_fonts_array', '__return_false' );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)
Back To Top