/ Published in: PHP
URL: http://css-tricks.com/snippets/wordpress/replace-excerpt-ellipsis-with-permalink/
Expand |
Embed | Plain Text
function replace_excerpt($content) { '<div class="more-link"><a href="'. get_permalink() .'">Continue Reading</a></div>', $content ); } add_filter('the_excerpt', 'replace_excerpt');
You need to login to post a comment.
