伏雨朝寒悉不胜,那能还傍杏花行。去年高摘斗轻盈。漫惹炉烟双袖紫,空将酒晕一衫青。人间何处问多情。 ———— 纳兰容若
将下面代码放入functions.php
适当位置
function tagsslug($widget, $split = ' ', $default = NULL)
{
if ($widget->tags) {
$result = array();
foreach ($widget->tags as $tag) {
$result[] = $tag['slug'];
}
return implode($split, $result);
} else {
return $default;
}
}
输出文章标签缩略名 <?php echo tagsslug($this); ?>
function tagsname($widget, $split = ' ', $default = NULL)
{
if ($widget->tags) {
$result = array();
foreach ($widget->tags as $tag) {
$result[] = $tag['name'];
}
return implode($split, $result);
} else {
return $default;
}
}
输出文章标签名 <?php echo tagsname($this); ?>