Reply To: Add/Modify "Read More" Button

Homepage Community Forums Classik Theme Support Add/Modify "Read More" Button Reply To: Add/Modify "Read More" Button

#1560
bshellhorse
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.