Change the related posts title in the OceanWP theme

Change the related posts title in the OceanWP theme on child sites.

Snippet Type

Execute on Child Sites

Snippet

function myprefix_related_posts_title() {
	$my_txt = esc_html__( 'Related Posts', 'oceanwp');
	return $my_txt;
}
add_filter( 'ocean_single_related_posts', 'myprefix_related_posts_title' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.