Kadence - Change Related Posts title
Update September 2024: Kadence recently added a setting for changing the Related Posts title right inside the Customizer! To update the title, go to Appearance > Customize > Posts/Pages Layout > Single Post Layout > Related Posts Title.
Didn't work?
If changing the title in the Customizer does not update the title on your website, then your theme contains a custom function for the Related Posts title. Any of our themes released pre-September 2024 will have this function. It's easy to remove!
1. In your WordPress dashboard, go to Appearance > Theme Editor > Functions.php.
2. Locate this section:
//* Change related posts title function vivienne_similar_posts_title( $html ) { $html = '<h2 class="entry-related-title">' . esc_html__( 'You'll Also Love', 'custom-text-domain' ) . '</h2>'; return $html; } remove_all_filters( 'kadence_single_post_similar_posts_title' ); add_filter( 'kadence_single_post_similar_posts_title', 'vivienne_similar_posts_title' );
Note: This code will vary slightly based on which theme you are using.
3. Delete this entire section, clear your cache if needed, and then the title you set in the Customizer will take effect!