Changes the Font-Display Property of Custom Fonts

Changes the font-display property of custom fonts in Elementor to 'swap' for better performance.

PHP
/**
 * Snippet Name:     Changes the font-display property of custom fonts
 * Snippet Author:   coding-bunny.com
 * Description:      Changes the font-display property of custom fonts in Elementor to 'swap' for better performance.
 */

add_filter( 'elementor_pro/custom_fonts/font_display', 'cb_optimize_custom_fonts', 10, 3 );

function cb_optimize_custom_fonts( $current_value, $font_family, $data ) {
    return 'swap';
}

How To Implement This Solution?

Leave a Reply

Your email address will not be published. Required fields are marked *

My Agile Privacy
This site uses technical and profiling cookies. You can accept, decline or customize cookies by pressing the desired buttons. By closing this policy you will continue without accepting.

Need help?

Choose one of the following options:

Powered by CodingBunny