Home Forums WordPress Themes – Premium Scripted Pro Changing the 'CONTINUE READING' text

Tagged: ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #39729
    Matthew Chatfield
    Participant

    How can I change the ‘more’ text which currently reads ‘CONTINUE READING’?

    I’ve tried changing it in functions.php both in the parent and child themes – the parent does nothing, the child gives me a 500 error.

    Thanks!

    #39748
    Sushil Adhikari
    Moderator

    Dear Matthew Chatfield,

    Thank you for contacting Styled Themes support team.

    Depending on the post format you can overwrite respective template on child theme. let’s suppose if you are using default template then you need to copy content.php template on child theme, there you will find this following code:

    <?php if ( is_single() ) : ?>
    		<?php the_content(); ?>
    	<?php else : ?>
    		<?php the_excerpt(); ?>
    		<a class="more" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php _e( 'Continue Reading', 'scripted-pro' ); ?></a>
    	<?php endif; ?>

    There you can change your text.

    Let us know if you got any problems on this.

    Thanks

    #39760
    Matthew Chatfield
    Participant

    #RESOLVED

    That worked exactly as expected, many thanks for your prompt reply.

    #39782
    Binaya D
    Participant

    Hi There,

    That’s Great ! If you face any problem in future then please let us know. We are happy to help you.

    Thanks

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.