Kadence - Change related posts heading text

In this tutorial, we'll show you how to change the "Related Posts" heading text that appears above the related posts section on your single post pages. Depending on your theme, this text might say "You'll Also Love."

1. In your WordPress dashboard, go to Appearance > Theme Editor > Functions.php.

2. Click your cursor inside the code box and click Command+F (Ctrl+F on PC) to search. Search "related" to be taken down to this section:

//* Change related posts title
function savannah_change_similar_posts_title() {
	echo '<h2 class="entry-related-title">Related Posts</h2>';
}
add_filter( 'kadence_single_post_similar_posts_title', 'savannah_change_similar_posts_title' );

Note: This code will vary slightly based on which theme you are using.

3. In between <h2> and </h2>, replace Related Posts with your preferred text.

4. Click Update File to save.