11 lines
380 B
JavaScript
11 lines
380 B
JavaScript
jQuery( function( $ ) {
|
|
|
|
wp.customize('site_identity_font_family',function ( value ) {
|
|
value.bind(function ( to ) {
|
|
$("head").append("<link rel='stylesheet' 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('--site-identity-font-family', to);
|
|
}
|
|
);
|
|
} );
|
|
|
|
} ); |