skip to Main 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 WPCode)
Back To Top