2014-10-31 108 views
1

我想從下面的列表中顯示排除類別:從列表中排除類別 - WordPress的

<?php 
    $categories = get_categories('orderby=id&exclude=1,'. getOption('promo-categorie', false)); 
    foreach($categories as $category) : 
     $active = (!is_home() && get_query_var('cat') == $category->term_id)? ' style="color: ' . getOption($category->category_nicename . '-color', false) . '"' : ''; 
     $catLink = (get_query_var('cat') == $category->term_id) ? get_bloginfo('wpurl') : get_category_link($category->term_id); 
?> 
    <a class="nav-links" href="<?php echo (get_query_var('sort') == 'list')? add_query_arg(array('sort' => 'list'), $catLink) : $catLink ?>" <?php echo $active; ?>><?php echo $category->name; ?></a> 
<?php 
    endforeach; 
?> 

我與PHP總福利局,但我可以告訴「宣傳片,categorie 「正被排除在外。另外,我想排除另一個類別。

任何幫助,將不勝感激。

回答

3

您可以排除array.You ID可以通過多個ID中排除像

$args = array( 
    'hide_empty'    => 1,  
    'exclude'     =>array(1,2,3) // desire id 
); 

$categories = get_categories($args); 
+0

這做到了參數。感謝你的協助! – kesernio 2014-10-31 12:21:02

相關問題