/ Published in: PHP
URL: http://scottnix.com/code/wordpress/thematic-snippets/
Converts [...] more link to actual Read More ยป link.
Expand |
Embed | Plain Text
// add read more on categories to match wp read more function snix_modify_excerpt($text) { return str_replace('[...]', ' <a href="'.get_permalink().'" class="more-link">Read more »</a>', $text); } add_filter('get_the_excerpt', 'snix_modify_excerpt');
You need to login to post a comment.
