Skip to content

Snippet: 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 (100% Free) or WPCode (sponsored)
Back To Top