Viewing 2 replies - 1 through 2 (of 2 total)
  • Put this code at the bottom of your theme Function.php

    function sbt_auto_excerpt_more( $more ) {
    return ‘aaa’;
    }
    add_filter( ‘excerpt_more’, ‘sbt_auto_excerpt_more’, 20 );

    function sbt_custom_excerpt_more( $output ) {return preg_replace(‘/<a[^>]+>Continue reading.*?<\/a>/i’,”,$output);
    }
    add_filter( ‘get_the_excerpt’, ‘sbt_custom_excerpt_more’, 20 );

    Plugin Author bjorsq

    (@bjorsq)

    This may also be set in your theme, so if the above solution doesn’t help, you may have to edit your theme’s tempaltes.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove or edit "Continue reading" text’ is closed to new replies.