• in the Codex;

    function new_excerpt_more($more) {
    global $post;
    return ' <a class="moretag" href="'. get_permalink($post->ID) . '">Read more...</a>';
    } 
    
    add_filter('excerpt_more', 'new_excerpt_more');

    is said to change the excerpt ‘read more’ only… it doesn’t! it changes it if the ‘more’ is in the content or the excerpt isn’t hand written. If the excerpt is handwritten it still reads ‘continue reading’ – how do I change this?

  • The topic ‘The excerpt 'continue reading'’ is closed to new replies.