Change Related Post title on Post Page in Hestia theme

This documentation will help you to you change the Related Posts title on the post pages in Hestia theme.

You need to create or download a child theme for Hestia. Make sure to download the proper type of child theme depending on the theme you are using, Hestia or Hestia Pro. More information about child themes can be found here.

Direct download child theme for Hestia

Direct download child theme for Hestia Pro.

After you have the child theme activated, you have to add the following code at the end of functions.php file within the child theme.

function change_related_posts_title() {
   return 'More posts';
}
add_filter( 'hestia_related_posts_title', 'change_related_posts_title' );

Feel free to change 'More posts' on the second line with the desired text.

If you have difficulties with changing the title you can ask for help by opening a support ticket here

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us