Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created March 31, 2013 17:16
Show Gist options
  • Save braddalton/5281335 to your computer and use it in GitHub Desktop.
Save braddalton/5281335 to your computer and use it in GitHub Desktop.
function wpsites_archive_intro_text() {
if ( !is_category() && !is_tag() && !is_tax() )
return;
if( get_query_var( 'paged' ) )
return;
echo '<h1 class="entry-title">'.single_term_title('', false).'</h1>';
echo '<div class="entry-content">'.wpautop( term_description() ).'</div>';
}
add_action( 'genesis_before_loop', 'wpsites_archive_intro_text', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment