Skip to content

Instantly share code, notes, and snippets.

@frontend-coder
Last active June 2, 2022 06:05
Show Gist options
  • Save frontend-coder/bf159cd8c8f2dc7f95062db4b28590b9 to your computer and use it in GitHub Desktop.
Save frontend-coder/bf159cd8c8f2dc7f95062db4b28590b9 to your computer and use it in GitHub Desktop.
28.Кастомайзер. Довільний фон сайту #wordpress
$args = array(
'default-color' => '0000ff',
'default-image' => get_template_directory_uri() . '/images/wapuu.jpg',
);
add_theme_support( 'custom-background', $args );
add_theme_support( 'custom-background', array(
'default-color' => '0000ff',
'default-image' => get_template_directory_uri() . '/images/wapuu.jpg',
) );
<body <?php body_class(); ?>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment