• I’m looking to change the default “read more” text. The theme thats installed was using the_excerpt so I changed it to the_content. Now when I insert the more tag the read more text is showing as “Continue Reading”. I can’t find anywhere on any of the theme pages (index.php, functions.php, etc…) where it says Continue Reading. I have used the search feature and gone through every page.

    Here’s how the_content code looks on my index.php page.

    <?php
    ob_start();
    the_content(__(‘Read more’));
    $postOutput = preg_replace(‘/<img[^>]+./’,”, ob_get_contents());
    ob_end_clean();
    echo $postOutput;
    ?>

    Even thought that does say “Read More” above… on my blog its still showing as Continue Reading.

    Can someone please help.

    thanks.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Change "Read More" Text’ is closed to new replies.