/ Published in: PHP
URL: http://justintadlock.com/archives/2009/07/01/how-to-filter-a-wordpress-themes-more-link-text
Add to functions.php file.
Expand |
Embed | Plain Text
<?php add_filter( 'the_content_more_link', 'my_more_link', 10, 2 ); function my_more_link( $more_link, $more_link_text ) { } ?>
You need to login to post a comment.
