Skip to content

Instantly share code, notes, and snippets.

@premanshup
Created May 1, 2021 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save premanshup/c848b7c30c376928a6316704a290cf02 to your computer and use it in GitHub Desktop.
Save premanshup/c848b7c30c376928a6316704a290cf02 to your computer and use it in GitHub Desktop.
"Related Posts" - change title to custom title - Add this in Astra child theme's functions.php file
add_filter( 'astra_related_posts_title', 'astra_change_related_posts_title' );
function astra_change_related_posts_title( $title ) {
$custom_title = 'Your Custom Title';
return str_replace( 'Related Posts', $custom_title, $title );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment