Created
July 14, 2018 17:42
-
-
Save bacalj/b8a3950fbf80f08cd44a56e8e28a3920 to your computer and use it in GitHub Desktop.
display the category description on top of the category archive if the theme doesn't already
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
<?php | |
function add_cat_desc( $query ){ | |
if (is_category()){ | |
the_archive_description( '<div class="taxonomy-description">', '</div>' ); | |
} | |
} | |
add_action( 'loop_start', 'add_cat_desc' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment