我想在WordPress网站中获取最新(最新)标签。我搜索了很多, 但没有找到任何解决方案。
请帮忙
【如何在WordPress中获取最新的标签】谢谢
#1
$args = array(
'number' =>
1, 'order' =>
DESC
);
$tags = get_tags( $args );
foreach ( $tags as $tag ) {
$tag_link = get_tag_link( $tag->
term_id );
$html = "<
a href='http://www.srcmini.com/{$tag_link}' title='{$tag->
name}' class='{$tag->
slug}'>
";
$html .= "{$tag->
name}<
/a>
";
echo $html;
}
编辑以显示最新标签。有关详细信息, 请参见评论。
参考:http://codex.wordpress.org/Function_Reference/get_tags
#2我知道, 你需要获取wordpress标签名称, 我将编写一个非常简单的脚本来显示tag_name
<
?php // Get value from wordpress get_tags() function and stored in $your_tag variable
$your_tag = get_tags();
// Check if has tag
if( $your_tag ){ // Fetch data from array argument using foreach loop
foreach( $your_tag as $tag_single ) {echo '<
li>
<
a href="'. esc_url( get_tag_link( $tag_single->
term_id ) ) .'">
'." $tag_single->
name ".'<
/a>
<
/li>
';
}
}?>
有关更多信息, 请检查
https://codex.wordpress.org/Function_Reference/get_tags
推荐阅读
- 如何解决小部件之间的空间()
- 如何获取一个类别中的多少帖子并将其显示在wordpress主题上
- 业务-应用-数据-技术架构的正向设计方法
- Linux远程访问及控制
- Spring cloud/Alibaba微服务架构实战完整代码资料
- linux 命令150条
- 脚本部署HTTP服务协议
- Linux网络之YUM仓库的补充和NFS共享服务
- 性能分析之激情的过程无奈的结局