Skip to content

Snippet: Alter The ‘This Post Has X Comments’ Heading

function myprefix_comments_title() {
   return 'Your Custom Text';
}
add_filter( 'wpex_comments_title', 'myprefix_comments_title' );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top