modified file smtp-mailer

This commit is contained in:
2024-02-08 12:31:51 +00:00
committed by Gitium
parent a2ae510d11
commit fdae6c72fc
958 changed files with 177242 additions and 49479 deletions

View File

@ -0,0 +1,18 @@
/**
* Theme Customizer enhancements for a better user experience.
*
* Contains handlers to make Theme Customizer preview reload changes asynchronously.
*/
( function( $ ) {
// Update the site title in real time...
wp.customize( 'generate_copyright', function( value ) {
value.bind( function( newval ) {
if ( $( '.copyright-bar' ).length ) {
$( '.copyright-bar' ).html( newval );
} else {
$( '.inside-site-info' ).html( newval );
}
} );
} );
}( jQuery ) );