Summary not working
-
I’m currently working on the following website: https://www.woodburymensshop.com/blog-1/
I’m trying to make the blog show an exerpt but I’m running into issues. I’ve tried changing the reading settings to Summary, adding an exerpt in the actual post, and adding the following php code into my theme’s functions file to no avail.
function excerpt_read_more_link($output) { global $post; return $output . '<a href="'. get_permalink($post->ID) . '"> Read More...</a>'; } add_filter('the_excerpt', 'excerpt_read_more_link');
Is there anything else I could do to make the summary work on this theme?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Summary not working’ is closed to new replies.