2016-10-15 79 views
0

我設立了一個WordPress博客網站。我已將WP附帶的cateogory小部件添加到右側邊欄,並將其設置爲顯示爲下拉菜單。我需要改變它的佈局(顏色等),但似乎無法找到它所謂的,其中.php文件我需要看看,如果它連接到任何CSS文件。誰能幫我?我想知道其他人遇到這個問題爲好,但我似乎無法找到任何有關它的信息...不在WordPress上發表文章的作者,類別和日期

/EM

回答

0
<?php function custom_taxonomy_dropdown($taxonomy) { 
    $terms = get_terms($taxonomy); 
    if ($terms) { 
    foreach ($terms as $term) { 
    printf('<li><a href="'.get_site_url().'/category/'.$term->slug.'">'.$term->name.' ('.$term->count.')</a></li>', esc_attr($term->slug), esc_html($term->name)); 
     } 
    } 
} 
?> 
<?php custom_taxonomy_dropdown('category'); ?> 
相關問題