如何为WordPress热门标签上添加小图标?

想要给分类可以加个性图标,那么如何为WordPress热门标签上添加小图标? <?php $postta…


Warning: Attempt to read property "post_type" on null in /www/wwwroot/wper.net/wp-content/plugins/wper-meta.php on line 317

想要给分类可以加个性图标,那么如何为WordPress热门标签上添加小图标?

如何为WordPress热门标签上添加小图标? (https://www.wpmee.com/) WordPress使用教程 第1张

<?php

$posttags = get_the_tags();

if ($posttags) {

foreach($posttags as $tag) {

echo ‘<img src=”http://example.com/images/’ . $tag->term_id . ‘.jpg”

alt=”‘ . $tag->name . ‘” />’;

}

}

?>

官网原代码中的标签无链接,小图标地址是绝对路径,简单修改一下:

<?php

$posttags = get_the_tags();

if ($posttags) {

foreach($posttags as $tag) {

echo ‘<a href=”‘.get_tag_link($tag).’”><img src=” ‘.get_bloginfo(‘template_directory’).’/image/’ . $tag->term_id . ‘.jpg” />’. $tag->name .'</a>’;

}

}

?>

小图标地址改为相对路径,可以将小图标放到当前主题 image 目录中,默认小图标名称以相应的标签ID命名。

可以修改其中的:$tag->term_id为$tag->name,这样图标可以直接用标签名称命名。

用上述代码替换主题默认的标签函数:

<?php the_tags(); ?>

如果主题无类似的标签调用函数,可以加到模板主循环适当的位置。

最后,用CSS样式美化一下,即可。

类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册