WC_Twenty_Twenty::set_white_background
Set background color to white if it's default, otherwise don't touch it.
Method of the class: WC_Twenty_Twenty{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = WC_Twenty_Twenty::set_white_background();
WC_Twenty_Twenty::set_white_background() WC Twenty Twenty::set white background code WC 10.3.6
public static function set_white_background() {
$background = sanitize_hex_color_no_hash( get_theme_mod( 'background_color' ) );
$background_default = 'f5efe0';
// Don't change user's choice of background color.
if ( ! empty( $background ) && $background !== $background_default ) {
return;
}
// In case default background is found, change it to white.
set_theme_mod( 'background_color', 'fff' );
}