Comment on page
quotes_dlx_can_preload_fonts
Whether to preload fonts or not.
This filter is a true/false flag and lets the plugin know if it can preload fonts or not.
Location:
php/Blocks.php
/**
* Whether to preload fonts or not.
*
* @since 1.0.0
*
* @param bool true to preload, false to not.
*/
$can_preload = apply_filters( 'quotes_dlx_can_preload_fonts', true );
if ( ! $can_preload ) {
return;
}
Last modified 1yr ago