HEX
Server: Apache
System: Linux VM-16-7-centos 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64
User: www (1000)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.molinta.com/wp-content/themes/context-blog/js/customizer.js
/* global wp, jQuery */
/**
 * File customizer.js.
 *
 * Theme Customizer enhancements for a better user experience.
 *
 * Contains handlers to make Theme Customizer preview reload changes asynchronously.
 */

( function( $ ) {
	// Site title and description.
	wp.customize( 'blogname', function( value ) {
		value.bind( function( to ) {
			$( '.site-title a' ).text( to );
		} );
	} );
	wp.customize( 'blogdescription', function( value ) {
		value.bind( function( to ) {
			$( '.site-description' ).text( to );
		} );
	} );

	// Header text color.
	wp.customize( 'header_textcolor', function( value ) {
		value.bind( function( to ) {
			if ( 'blank' === to ) {
				$( '.site-title, .site-description' ).css( {
					clip: 'rect(1px, 1px, 1px, 1px)',
					position: 'absolute',
				} );
			} else {
				$( '.site-title, .site-description' ).css( {
					clip: 'auto',
					position: 'relative',
				} );
				$('.banner-author-holder .banner-author-info h1 a').css({
					color: to,
				});
				$('.banner-author-holder .banner-author-info p').css({
					color: to,
				});
			}
		} );
	} );

	//Update site background color...
	wp.customize( 'background_color', function( value ) {
		value.bind( function( newval ) {
			var newval2 = '70vw solid ' + newval;
			$('[class*=about-author-] .about-author-holder').css('background-color', newval );
			$('.introduction-holder-right').css('border-left',  newval2);
			$('.introduction-holder-left').css('border-left',  newval2 );
			$('.full-blog-holder .item .caption').css('background-color',  newval );
			$('.sidebar-title h2').css('background-color',  newval );
			$('.sidebar-title h3').css('background-color',  newval );
			$('.sidebar-title h4').css('background-color',  newval );
			$('.sidebar-title h5').css('background-color',  newval );
			$('.sidebar-title h6').css('background-color',  newval );
			
			$('.home-section .blog-snippet').css('background-color',  newval );

			$('.home-section.inline-blog .blog-slider-thmb').css('background-color',  newval );

			$('.home-section.main-blog-holder aside > div').css('background-color',  newval );

			$('.static-page .detail-page-body').css('background-color',  newval );

			$('.static-page aside > div').css('background-color',  newval );

			$('.inside-page .detail-page-body').css('background-color',  newval );

			$('.inside-page .detail-page aside > div').css('background-color',  newval );

			$('.inside-page.archive .blog-snippet .blog-content').css('background-color',  newval );

			$('.inside-page.archive aside > div').css('background-color',  newval );

			$('.inside-page.search .blog-snippet .blog-content').css('background-color',  newval );

			$('.inside-page.search aside > div').css('background-color',  newval );

			$('.pagination .page-numbers').css('background-color',  newval );

			$('#masthead').css('background-color',  newval );

		} );
	} );
	
}( jQuery ) );