Skip to content

Instantly share code, notes, and snippets.

View TutsInsider's full-sized avatar
🏠
Working from home

Ahmad Jawad TutsInsider

🏠
Working from home
View GitHub Profile
@coffeepostal
coffeepostal / wordpress.list.all.categories.comma.separated.php
Created January 19, 2017 23:56
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> ';
}