Home › Community Forums › Classik Theme Support › Add/Modify "Read More" Button › Reply To: Add/Modify "Read More" Button
October 5, 2012 at 12:15 pm
#1560

Customer
I have replaced with this code, which to me seems identical to your code:
<code>
/** Customize the read more link */
add_filter( ‘excerpt_more’, ‘custom_read_more_link’ );
add_filter( ‘get_the_content_more_link’, ‘custom_read_more_link’ );
add_filter( ‘the_content_more_link’, ‘custom_read_more_link’ );
function custom_read_more_link() {
return ‘… <a href=”‘ . get_permalink() . ‘” rel=”nofollow”>Read More</a>’;
}
</code>
I clear my cache and tried adding a <code><<!–more–></code> and deleting it. Still not getting it.