Last active
August 29, 2015 14:13
-
-
Save renventura/df43e156e76fa5cdd6c0 to your computer and use it in GitHub Desktop.
Prints a category's title and description in Genesis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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