• Resolved jkerrison

    (@jkerrison)


    Hi all,
    A quick one. I can’t seem to find the option to change the Read More text for the theme? Most of the advice I have is that it should be in the functions.php but it’s not there. I’d love to change the text for my website to ‘Hear Show’. Thanks for your tips.
    John.

Viewing 5 replies - 1 through 5 (of 5 total)
  • If your child theme does not have a file called functions.php, feel free to create one. Then add the following code in it:

    <?php
    function custom_excerpt_more_link($more){
       return '<a href="' . get_the_permalink() . '">&nbsp;Hear Show</a>';
    }
    add_filter('excerpt_more', 'custom_excerpt_more_link');
    

    Let me know if this works!

    Thread Starter jkerrison

    (@jkerrison)

    Hi Subrata … thank you! I managed to find the Read More text in Custom Template Tags. They’ve changed just fine. Yes– I really need to learn more about child themes. Thanks.

    Theme Author Vinod Dalvi

    (@vinod-dalvi)

    @subrataemfluence Thanks for helping out here in this forum.

    Your help here is really appreciated.

    @jkerrison You can learn more about child theme by reading information provided on this page http://freewptp.com/why-and-how-to-create-wordpress-child-theme/

    Please tell us how to change the read more text with a function since the one above does not work. also, how do we remove the “powered by” links in the footer?

    Theme Author Vinod Dalvi

    (@vinod-dalvi)

    @bjornenblog This topic is resolved and To help us keep support thread separates could you please create your own thread for your question here https://ww.wp.xz.cn/support/theme/ruby/ instead of replying on others thread as it makes the thread messy and hard to read.

    If you want to you can also add reference of this thread in your newly created thread.

    We would be more than happy to help you on your new thread.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Read More text’ is closed to new replies.