Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created July 17, 2017 23:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/3919b00d6717267e343224de844c88f9 to your computer and use it in GitHub Desktop.
Save braddalton/3919b00d6717267e343224de844c88f9 to your computer and use it in GitHub Desktop.
add_action( 'genesis_after_loop', 'list_categories' );
function list_categories() {
echo '<div class="archive-description">';
wp_list_categories(
array(
'title_li' => ''
) );
echo '</div>';
}
// Add any of these args in the above array https://developer.wordpress.org/reference/functions/wp_list_categories/#parameters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment