Skip to content

Instantly share code, notes, and snippets.

@FreshLondon
FreshLondon / custom-menu.php
Last active January 13, 2019 10:41 — forked from nielslange/functions.php
List root and sub categories including their published posts
<div class="menu-main-menu-container">
<ul id="primary-menu" class="menu nav-menu" aria-expanded="false">
<?php
$root_cat_args = array('taxonomy' => 'products-category', 'hide_empty' => false, 'parent' => 0);
$root_categories = get_categories($root_cat_args);
foreach ($root_categories as $category) {
// Print all root category title
printf('<li><span>%s</span><ul class="depth-one">', $category->slug);
//debug($category);