サイドバーがあり、コンポーネントを追加すると、見出しがulのliアイテム内に追加され、見栄えが悪くなります。どうすればこれを克服できますか。残念ながら、私はワードプレスとPHPの両方についてほとんどまたはまったく知識がありません。
これが私がfirebugでそれを得る方法です:
<li class="widget widget_categories" id="categories-8"><h2 class="widgettitle">Categories</h2>
<ul>
<li class="cat-item cat-item-1"><a title="View all posts filed under Uncategorized" href="http://localhost/wordpress/wordpress/?cat=1">Uncategorized</a>
</li>
</ul>
</li>
これは、いくつかの静的なhtml ul liピースを除いて、サイドバーにあるものです。
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar() ) : else : ?>
<ul class="ul-cat">
<?php wp_list_categories('show_count=1&title_li='); ?>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<?php endif; ?>