diff --git a/js/customizer.js b/js/customizer.js index 9712cde..df2a8f7 100644 --- a/js/customizer.js +++ b/js/customizer.js @@ -8,12 +8,12 @@ // Site title and description. wp.customize( 'blogname', function( value ) { value.bind( function( to ) { - $( '.site-title a' ).html( to ); + $( '.site-title a' ).text( to ); } ); } ); wp.customize( 'blogdescription', function( value ) { value.bind( function( to ) { - $( '.site-description' ).html( to ); + $( '.site-description' ).text( to ); } ); } ); } )( jQuery ); \ No newline at end of file