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

#1554
bshellhorse
Customer

    <blockquote cite="

    /** 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”>View</a>’;
    }

    ">

    That is the code in my file, so I think I have the code correct.  I guess the problem is your last statement “make sure you have the more link enabled on your posts.”  Other than adding a <blockquote cite="<!–more–>” in the post, I do not know where to do that.