From 9d0b4732010e005b229b31f001aab84f202d1849 Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Tue, 18 Dec 2018 14:41:14 -0500 Subject: [PATCH] Default featured image is now vertically centered --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions.php b/functions.php index 91966ab..e50325f 100644 --- a/functions.php +++ b/functions.php @@ -387,9 +387,9 @@ function is_post_type($type){ function glm_get_background() { if (has_post_thumbnail()) { $image_data = wp_get_attachment_image_src(get_post_thumbnail_id(), "full"); - $imageUrl = ''; + $imageUrl = ''; } else { - $imageUrl = ''; + $imageUrl = ''; } return $imageUrl; } -- 2.17.1