Excerpt Output
-
Hello, I have this code to generate the excerpts. It adds the link Read More under the text. I need to add the link just after the text. Please help
function excerpt_read_more_link($output) {
global $post;
return $output . ‘ID) . ‘”> Read More…‘;
}
add_filter(‘the_excerpt’, ‘excerpt_read_more_link’);
The topic ‘Excerpt Output’ is closed to new replies.