Remove all Google Fonts in the Font Picker
If you want to delete all the fonts available in our font picker, you can remove all the fonts in it using this snippet:
add_action( 'admin_footer', function() {
echo <<<JS
<script>
if ( wp ) {
wp.hooks.addFilter( 'stackable.font-family-control.options', 'my-theme', options => {
return []
} )
}
</script>
JS;
} );
Read more: