Skip to content

Instantly share code, notes, and snippets.

@MaruscaGabriel
Created January 26, 2015 16:26
Show Gist options
  • Save MaruscaGabriel/ea258f89ac862af6ff5a to your computer and use it in GitHub Desktop.
Save MaruscaGabriel/ea258f89ac862af6ff5a to your computer and use it in GitHub Desktop.
Automatically display titles on category, tag and taxonomy archives
<?php
/**
* Default Category Title in Genesis
*
* @author Marusca Gabriel
*/
function mg_default_category_title( $headline, $term ) {
if( ( is_category() || is_tag() || is_tax() ) && empty( $headline ) )
$headline = $term->name;
return $headline;
}
add_filter( 'genesis_term_meta_headline', 'mg_default_category_title', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment