我已经建立了一个Wordpress博客网站。我已将WP附带的cateogory小部件添加到右侧边栏并将其设置为显示为下拉列表。我需要改变它的布局(颜色等......)但似乎无法找到它所调用的内容,其中我需要查看.php文件以及它是否已连接到任何CSS文件。谁能帮我?我认为其他人也遇到过这个问题,但我似乎无法找到有关它的任何信息...
/ EM
答案 0 :(得分: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'); ?>