Skip to content

Instantly share code, notes, and snippets.

View gagimilicevic's full-sized avatar

Milicevic Dragan gagimilicevic

View GitHub Profile
@gagimilicevic
gagimilicevic / content-page-faq.php
Created November 8, 2016 09:09
List all custom taxonomy categories (parent and child) and their content
<?php
$categories = get_categories(array(
'orderby' => 'name',
'parent' => 0,
'taxonomy' => 'faqs_category'
));
?>
<?php