From 4c376df8ca5ffb8db8fe63c681cc2f3a601c4ec7 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Thu, 21 Jan 2016 16:00:00 -0500 Subject: [PATCH] removing featured image from single blog page --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 2ccfd99..3d694ab 100644 --- a/functions.php +++ b/functions.php @@ -90,7 +90,7 @@ function glm_get_header() { else $post_id = $post->ID; - if (has_post_thumbnail($post_id) && (!(is_home()) )) { + if (has_post_thumbnail($post_id) && (!(is_home()) ) && (!(is_single()))) { $image_data = wp_get_attachment_image_src(get_post_thumbnail_id($post_id), "full"); echo ' style="background-image: url('.$image_data[0].');height:0;padding:0;padding-bottom:30%;background-position:center center;background-size: 100%;background-repeat:no-repeat;max-height: 420px;min-height: 150px; "'; } else { -- 2.17.1