Missing Read More On Blog

Are you missing “Read More” link in your blog excerpt? Well, theres an easy fix. Just add the following code to your functions.php file.

 

function new_excerpt_more($more) {
   global $post;
   return '… <a href="'. get_permalink($post->ID) . '">' . 'Read More »' . '</a>';
   }
   add_filter('excerpt_more', 'new_excerpt_more');