Include post title in readmore link?
If the following code is in-fact the code that is controlling your read more link then you perhaps the following may work; if ($show_more_tag) { global $post; $excerpt = $excerpt . ‘ <a class=”more-link” href=”‘ . $perma_link . ‘”>’ . get_the_title($post->ID) . ‘ </a>’; } I’ve declared global $post; again, just in case the above … Read more