Hide Child Categories
I have been able to hide the child category while it is empty but once a job is added to the child it becomes visible. Using wordpress 3.6.1 with jobroller 1.7[PHP]
<?php
$args = array(
'orderby' => 'name',
'show_count' => -1,
'hierarchical' => 0,
'taxonomy' => 'job_cat',
'title_li' => '',
'exclude' =>'23,25',
'order' => 'ASC',
'depth' => 0,
'walker' => 'Walker_Category' );
$job_cats = get_categories( $args );
'walker' => 'Walker_Category' );
$job_cats = get_categories( $args );
/PHP]
Any help will be greatly appreciated as I have tried a million different options..