Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created July 24, 2014 13:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/1a97b7e5c72afeac0a98 to your computer and use it in GitHub Desktop.
Save billerickson/1a97b7e5c72afeac0a98 to your computer and use it in GitHub Desktop.
<?php
/**
* Default Term Description
*
*/
function be_default_term_description( $desc, $term ) {
if( ( is_category() || is_tag() || is_tax() ) && empty( $desc ) )
$desc = $term->description;
return $desc;
}
add_filter( 'genesis_term_meta_intro_text', 'be_default_term_description' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment