【问题标题】:How can I more customize wordpress tags list?我怎样才能更多地自定义 wordpress 标签列表?
【发布时间】:2014-12-02 14:50:08
【问题描述】:

我得到一个代码 wordpress codex

<?php the_tags( '<ul><li>', '</li><li>', '</li></ul>' ); ?> 

用于显示/样式标签列表。

但我还需要添加&lt;a href="#"&gt;&lt;/a&gt;

我的 HTML 是这样的,

<ul class="tag-list">
    <li><a href="#"><i class="fa fa-check-circle"></i>fully responsive</a></li>
    <li><a href="#"><i class="fa fa-check-circle"></i>localisation support</a></li>
    <li><a href="#"><i class="fa fa-check-circle"></i>semantic and clean html/css</a></li>
    <li><a href="#"><i class="fa fa-check-circle"></i>woocomerce support</a></li>
    <li><a href="#"><i class="fa fa-check-circle"></i>custom widgets</a></li>
</ul>

谢谢, 迪普托

【问题讨论】:

  • 我不太确定这个问题到底在问什么。您要添加更多标签还是链接有问题?

标签: wordpress tags customization taglist


【解决方案1】:

我不确定是否能很好地理解您的问题。 如果您需要 WP 生成标签列表 HTML,例如 your HTML,您可以这样做:

<?php the_tags( '<ul class="tag-list"> <li><a href="#"><i class="fa fa-check-circle"></i>', '</a></li> <li><a href="#"><i class="fa fa-check-circle"></i>', '</a></li></ul>' ); ?>

【讨论】:

    猜你喜欢
    • 2013-02-28
    • 2020-04-06
    • 2022-01-24
    • 2021-10-02
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-07-10
    • 1970-01-01
    相关资源
    最近更新 更多