Skip to content

Instantly share code, notes, and snippets.

@bacalj
Created July 14, 2018 17:42
Show Gist options
  • Save bacalj/b8a3950fbf80f08cd44a56e8e28a3920 to your computer and use it in GitHub Desktop.
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
<?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