Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Last active December 17, 2015 05:19
Show Gist options
  • Select an option

  • Save JiveDig/5556907 to your computer and use it in GitHub Desktop.

Select an option

Save JiveDig/5556907 to your computer and use it in GitHub Desktop.
// Add category title and description to the Video Category taxonomy archives
add_action( 'genesis_before_content_sidebar_wrap', 'jivedig_video_cats_archive' );
function jivedig_video_cats_archive() {
echo '<div class="tax-title">';
echo '<p>All Videos Filed Under:</p>';
echo '<h2 class="archive-title">';
echo single_cat_title();
echo '</h2>';
echo '</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment