如何在没有href链接的情况下获取标记

时间:2011-03-11 07:21:01

标签: javascript html css wordpress tags

在wordpress中我使用wp_list_table来生成标签,但我需要没有链接的标签,任何人都可以帮助我获取没有href链接的标签

感谢, 拉姆

4 个答案:

答案 0 :(得分:1)

为什么不使用get_terms()方法获取数组并生成HTML?

http://codex.wordpress.org/Function_Reference/get_terms(查看示例部分)

$terms = get_terms("tags");
$count = count($terms);
if($count > 0){
     echo "<ul>";
     foreach ($terms as $term) {
       echo "<li>".$term->name."</li>";

     }
     echo "</ul>";
}

答案 1 :(得分:0)

你可以用这个:

$terms = get_terms( 'cars', array('fields'    => 'names'))

结果是一个名字数组;)

祝你好运

答案 2 :(得分:0)

您能否添加以下代码:

<?php
    $tags = get_tags();
    $html = '<div class="post_tags">';
    foreach ( $tags as $tag ) {
        $html .= "{$tag->name}";
    }
    $html .= '</div>';
    echo $html;
?>

答案 3 :(得分:-1)

您可以使用jQuery删除它,我确定还有其他替代方案,但如果您正在寻找轻松出路,请尝试以下方法:

$(function() {
    $('.foo').removeAttr('href');
});

示例: http://jsfiddle.net/ExxRX/