Browse Source

feat: use featured image when provided (#358)

pull/359/head
Felipe Dalcin 2 years ago committed by GitHub
parent
commit
45f02ccc21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      header.php

5
header.php

@ -45,6 +45,10 @@
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'pressbooks-aldine' ); ?></a>
<header class="header" role="banner" style="background-image: url(
<?php
if ( has_post_thumbnail() ) {
echo get_the_post_thumbnail_url();
} else {
if ( is_front_page() ) {
if ( has_header_image() ) {
echo( get_header_image() );
@ -54,6 +58,7 @@
} else {
echo get_template_directory_uri() . '/dist/images/catalog-header.jpg';
}
}
?>
);">
<div class="header__inside">

Loading…
Cancel
Save