在有些WordPress主题中,我们可能需要获取文章的第一个标签名称,如下图中的“大功率”标签。
怎么实现这个需求呢?其实相比获取所有的文章标签,只多了一小步,使用的是同样的函数——get_the_tags()
,代码如下:
< ?php
$posttags = get_the_tags();
$count=0;
if ($posttags) {
foreach($posttags as $tag) {
$count++;
if (1 == $count) {
echo $tag->name . ' ';
}
}
}
?>
其实还可以更简单一点:
< ?php
$posttags = get_the_tags();
if ($posttags) {
echo $posttags[0]->name;
}
?>
WordPress是一个功能很强大的平台,数据库中的所有内容,几乎都有明确的函数可以调用,者就大大方便了我们的开发过程,要实现一个功能之前,不妨上官方文章搜索一下有没有类似的函数。