Пытался добавить тег default-image в functions.php, но он не работает.Это работает, только когда я загружаю img из wp dashboard, но по умолчанию img не работает
functions.php
<?php
add_theme_support('title-tag');
add_theme_support('custom-header', array(
'default-image' => get_stylesheet_directory_uri() . '/images/logo.jpg',
));
?>
CSS
#logo{
width: 890px;
position: relative;
height: 200px;
}
HTML
<div id="logo" style="background: url(<?php header_image(); ?>) no-repeat;">
<div id="logo_text">
<!-- class="logo_colour", allows you to change the colour of the text -->
<h1><a href="index.html"><?php bloginfo('name');?></a></h1>
<h2><?php bloginfo('description');?></h2>
</div>
</div>