【发布时间】:2010-05-11 09:45:06
【问题描述】:
我想在帖子上显示标签列表,但标签上没有链接。现在我使用:
<?php the_tags( '<li>', ', ', '</li>'); ?>
如何从标签中去除链接?
【问题讨论】:
我想在帖子上显示标签列表,但标签上没有链接。现在我使用:
<?php the_tags( '<li>', ', ', '</li>'); ?>
如何从标签中去除链接?
【问题讨论】:
<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ' ';
}
}
?>
【讨论】: