1
我想爲我的佈局設計我的分類列表,但由於某種原因,wordpress生成的列表不會拾取我的CSS。WordPress分類不拾起CSS
這裏是培訓相關代碼:
CSS:
.post-categories ul {
margin-left: 0;
padding-left: 0;
display: inline;
}
.post-categories ul li {
margin: 0 5px 0 0;
padding: 3px 5px;
border: 2px solid rgb(253,22,66);
list-style: none;
display: inline;
color: rgb(253,22,66);
}
WordPress的PHP:
<?php echo get_the_category_list(); ?>
產生:
<ul class="post-categories">
<li><a href="http://noellesnotes.com/category/music/" title="View all posts in Music" rel="category tag">Music</a></li>
<li><a href="http://noellesnotes.com/category/thoughts/" title="View all posts in Thoughts" rel="category tag">Thoughts</a></li>
</ul>
任何幫助將不勝感激!
非常感謝。我不知道這種區別。這將有助於未來! – nellygrl