• Dear folks,

    I wish to change the title “Recent Posts” and link “More Posts” to something I choose. How do I do that?

    Thanks in advance!

    • This topic was modified 5 years, 11 months ago by eilker.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @eilker,

    Can you provide your site URL? We’d be happy to take a look for you.

    Thanks,

    Here is the CSS Snippet to change Recent Posts:

    .page-title, .recent-posts-title {
    	    font-size: 0;
    }
    .page-title, .recent-posts-title:after { 
    content: "Recent Posts";
        font-size: 35px;
    {

    Change “Recent Posts” to whatever word you wanted to replace it with. And you can modify the 35px to a different size, if you choose. I’ll look into changing the more posts link for you.

    Hope that helps!

    Alright, figured it out the snippet for more posts as well:

    .more-recent-posts{
    font-size: 0;
    }
    
    .more-recent-posts:before{
        content: "More Posts";
        font-size: .95rem;
    }

    Change “More Posts” to whatever word you prefer and you can mess with the font size for this one as well.

    Thanks!

    Thread Starter eilker

    (@eilker)

    They worked!

    Thank you very much!

    Hello,

    Is there a way to change this in PHP? It’s not working with multilingual site. English being the secondary language.

    Thanks a lot for your help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to change the title “Recent Posts”’ is closed to new replies.