JiveDig
5/10/2013 - 7:47 PM

gistfile1.txt

// 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>';
}