Skip to content

Instantly share code, notes, and snippets.

@pradeepdotco
Created August 27, 2016 02:21
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 pradeepdotco/7e579f65aa45e3f0957d4086aba81dba to your computer and use it in GitHub Desktop.
Save pradeepdotco/7e579f65aa45e3f0957d4086aba81dba to your computer and use it in GitHub Desktop.
Add Title and Description for WordPress category page
// Add Title and Description for WordPress category page
add_action( 'genesis_before_loop', 'wpism_output_category_info' );
function wpism_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