Files
Zeitfresser-Wordpress-Theme/inc/blocks/font-family/secondary/customizer-secondary-font-family.js
T
2026-04-20 22:55:59 +02:00

11 lines
352 B
JavaScript

jQuery( function( $ ) {
wp.customize('secondary_font_family',function ( value ) {
value.bind(function ( to ) {
$("head").append("<link href='https://fonts.googleapis.com/css?family=" + to + ":200,300,400,500,600,700,800,900|' rel='stylesheet' type='text/css'>");
document.body.style.setProperty('--secondary-font', to);
}
);
} );
} );