/**
* Daio Css
* @param control
* @param css_property
* @param selector
* @param unit
* @return css style
*/
function daio_css( control, css_property, selector, unit ) {
wp.customize( control, function( value ) {
value.bind( function( new_value ) {
// Remove '
);
} else {
wp.customize.preview.send( 'refresh' );
// Remove old.
jQuery( 'style#' + control ).remove();
}
} );
} );
}
/**
* Dynamic Internal/Embedded Style for a Control
*/
function daio_add_dynamic_css( control, style ) {
control = control.replace( '[', '-' );
control = control.replace( ']', '' );
jQuery( 'style#' + control ).remove();
jQuery( 'head' ).append(
''
);
}