Tho*_*mas 1 php tags wordpress
我想在帖子上显示标签列表,但标签上没有链接.现在我使用:
<?php the_tags( '<li>', ', ', '</li>'); ?>
Run Code Online (Sandbox Code Playgroud)
如何从标签中删除链接?
<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ' ';
}
}
?>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
8385 次 |
| 最近记录: |