Controls only apply to homepage when a featured image is set

This commit is contained in:
Tiago Noronha 2018-04-03 17:04:50 +01:00
parent 35a575c4ab
commit b5d14ef898

View file

@ -988,7 +988,7 @@ if ( ! class_exists( 'Storefront_Customizer' ) ) :
public function is_homepage_template() {
$template = get_post_meta( get_the_ID(), '_wp_page_template', true );
if ( ! $template || 'template-homepage.php' !== $template ) {
if ( ! $template || 'template-homepage.php' !== $template || ! has_post_thumbnail( get_the_ID() ) ) {
return false;
}