Skip to content

Instantly share code, notes, and snippets.

@renventura
Last active August 29, 2015 14:13
Show Gist options
  • Save renventura/df43e156e76fa5cdd6c0 to your computer and use it in GitHub Desktop.
Save renventura/df43e156e76fa5cdd6c0 to your computer and use it in GitHub Desktop.
Prints a category's title and description in Genesis
<?php //* Mind this opening PHP tag
/**
* Prints a category's title and description (no markup added)
*
* @author Ren Ventura
* @link http://www.engagewp.com/how-to-display-category-name-description-genesis/
*/
add_action( 'genesis_before_content', 'rv_output_category_info' );
function rv_output_category_info() {
if ( is_category() || is_tag() || is_tax() ) {
echo single_term_title();
echo term_description();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment