Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save coffeepostal/b713fc6dfbad450f81c6d2ba7520f085 to your computer and use it in GitHub Desktop.

Select an option

Save coffeepostal/b713fc6dfbad450f81c6d2ba7520f085 to your computer and use it in GitHub Desktop.
WordPress: List All Categories, Comma Separated
<?php
$categories = get_categories( array(
'orderby' => 'name',
'parent' => 0
) );
$category_list = array();
foreach ( $categories as $category ) {
$category_list[] = '<a href="' . get_category_link( $category->term_id ) . '">' . esc_html( $category->name ) . '</a> ';
}
echo implode( ', ', $category_list );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment