Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created March 29, 2022 13:40
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 searchwpgists/8fc7c47f0fbf703f055b559880b7a168 to your computer and use it in GitHub Desktop.
Save searchwpgists/8fc7c47f0fbf703f055b559880b7a168 to your computer and use it in GitHub Desktop.
Customize Comments Attribute label for Products custom post type in SearchWP
<?php
// Customize Comments Attribute label for Products custom post type in SearchWP.
add_filter( 'searchwp\source\attribute\label', function( $label ) {
if ( 'post.product' === $args['source'] && 'comments' === $args['attribute'] ) {
return 'Reviews';
} else {
return $label;
}
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment