如何在wordpress中获取最新(最近)标签

时间:2014-04-08 11:28:47

标签: wordpress-plugin wordpress-theming wordpress

我想在WordPress网站上获取最新(最新)标签。我搜索了很多,但没有找到任何解决方案。

请帮忙

由于

2 个答案:

答案 0 :(得分: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='{$tag_link}' title='{$tag->name}' class='{$tag->slug}'>";
    $html .= "{$tag->name}</a>";
    echo $html;
}

已编辑以显示最新标记。有关详细信息,请参阅注释。

参考:http://codex.wordpress.org/Function_Reference/get_tags

答案 1 :(得分:0)

我知道,你需要获得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