WC_Twenty_Twenty::set_white_background()
Set background color to white if it’s default, otherwise don’t touch it.
Contents
Description Description
Source Source
File: includes/theme-support/class-wc-twenty-twenty.php
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' ); }