linking the title and the image for the blog excerpt in media page template
authorAnthony Talarico <talarico@gaslightmedia.com>
Mon, 11 Feb 2019 17:36:58 +0000 (12:36 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Mon, 11 Feb 2019 17:36:58 +0000 (12:36 -0500)
functions.php
style.css

index 82da8ae..e2ca4bd 100644 (file)
@@ -219,11 +219,12 @@ function blog_feed($category='',$limit=1){
     ob_start();
     foreach($posts as $post){
         $image = '';
+        $url = get_permalink($post->ID);
         if (has_post_thumbnail( $post->ID ) ): 
             $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
         endif;
-        echo "<div class='blog-excerpt-title'><h4>$post->post_title</h4></div>";
-        echo "<div class='blog-excerpt-image-container'><img src='$image[0]'/></div>";
+        echo "<div class='blog-excerpt-title'> <a href='$url'><h4>$post->post_title </h4></a></div>";
+        echo "<div class='blog-excerpt-image-container'><a href='$url'><img src='$image[0]'/></a></div>";
         echo "<div class='blog-excerpt-content'>". content_excerpt($post->ID, 30)."</div>";
     }
         $output = ob_get_contents();
index bc203be..a08eec0 100644 (file)
--- a/style.css
+++ b/style.css
@@ -3,5 +3,5 @@ Theme Name: visitbenzie
 Author: Gaslight Media
 Author URI: http://www.gaslightmedia.com
 Description: A theme for Benzie Area Visitors Bureau
-Version: 1.0.33
+Version: 1.0.34
 */