Nadja von Massow
Member since January 2023
11
Snippets
40+
Favourites
90+
Downloads
Open all external links in new tab
This makes the manual link tab association obsolete. All links to another domain will open in…
10+
Duplicate Posts and Pages
// Add the duplicate link to action list for post_row_actions // for "post" and custom post…
10+
Remove Google Fonts (Elementor)
add_filter( 'elementor/frontend/print_google_fonts', '__return_false' );
10+
Remove Google Fonts (non-Elementor)
function disable_google_fonts() { return false; } add_filter( 'print_google_fonts', 'disable_google_fonts' );
<10
Ensure Webfont is Loaded (Elementor)
add_filter( 'elementor_pro/custom_fonts/font_display', function( $current_value, $font_family, $data ) { return 'swap'; }, 10, 3 );
<10
Ensure Webfont is Loaded (non-Elementor)
function custom_font_display( $current_value, $font_family, $data ) { return 'swap'; } add_filter( 'font_display', 'custom_font_display', 10, 3 );
<10