sql >> Databasteknik >  >> RDS >> Mysql

Visa endast wordpress-underkategorier

Den här koden bör hjälpa dig:

<ul> 
<?php 
 $cats = get_the_category();
 $mycat = $cats->cat_ID;
    wp_list_categories('orderby=id&child_of='.$mycat); 
?>
</ul>

ELLER

<?php
if (is_category()) {
    $cat = get_query_var('cat');
    $this_category = get_category($cat);
    $this_category = wp_list_categories('hide_empty=0&hierarchical=true&orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID."&echo=0");
    if($this_category !='<li>No categories</li>')
    {
     echo '<ul>'.$this_category.'</ul>'; 
    }
}
?>

Låt mig veta snälla.

Lycka till! :)



  1. Hur visar jag unika begränsningar för en tabell i MySQL?

  2. Dynamisk SQL-resultat till temporär tabell i SQL Stored-procedur

  3. Använda en Alias-kolumn i where-satsen i ms-sql 2000

  4. Infoga och ställ in värde med max()+1 problem