Skip to content

Instantly share code, notes, and snippets.

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 braddalton/99ad98e8361185eeddcc to your computer and use it in GitHub Desktop.
Save braddalton/99ad98e8361185eeddcc to your computer and use it in GitHub Desktop.
add_filter( 'genesis_title_comments', 'change_genesis_title_comments' );
function change_genesis_title_comments() {
if( 'products' == get_post_type() && is_single() ) {
$title = '<h3>Discussion</h3>';
return $title;
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment