rozszerzenie dla google fonts o polskie znaki

dodajemy na końcu url =latin-ext


<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Montserrat:wght@200&display=swap=latin-ext" rel="stylesheet">

Hope this helps and happy coding :)

Zobacz jeszcze

modyfikacja głównego wp dla konkretnych taxonomi

function nws_adjust_queries($query) { if ( !is_admin() && is_post_type_archive('oferty') && $query->is_main_query() ) { $query->set('posts_per_page', '1'); $taxQuery =...

usunięcie dodanych inline styli w WP 6.x

w pliku functions.php dodajemy kod: //Remove Block Library CSS from loading on the frontend function nws_remove_wp_block_library(){ wp_dequeue_style( 'global-styles' ); // Remove...