WC_Twenty_Twenty::set_white_background()

Set background color to white if it’s default, otherwise don’t touch it.


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' );
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.