Last active
December 17, 2015 05:19
-
-
Save JiveDig/5556907 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // 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