WC_Twenty_Twenty::set_white_background
Set background color to white if it's default, otherwise don't touch it.
Метод класса: WC_Twenty_Twenty{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$result = WC_Twenty_Twenty::set_white_background();
Код WC_Twenty_Twenty::set_white_background() WC Twenty Twenty::set white background WC 10.9.4
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' );
}