Wordpress-按用法显示前10个标签

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-按用法显示前10个标签相关的知识,希望对你有一定的参考价值。

Show the top tags by usage.
  1. <?php
  2. function top_tags() {
  3. $tags = get_tags();
  4.  
  5. if (empty($tags))
  6. return;
  7.  
  8. $counts = $tag_links = array();
  9. foreach ( (array) $tags as $tag ) {
  10. $counts[$tag->name] = $tag->count;
  11. $tag_links[$tag->name] = get_tag_link( $tag->term_id );
  12. }
  13.  
  14. asort($counts);
  15. $counts = array_reverse( $counts, true );
  16.  
  17. $i = 0;
  18. foreach ( $counts as $tag => $count ) {
  19. $i++;
  20. $tag_link = clean_url($tag_links[$tag]);
  21. $tag = str_replace(' ', '&nbsp;', wp_specialchars( $tag ));
  22. if($i < 11){
  23. print "<li><a href="$tag_link">$tag ($count)</a></li>";
  24. }
  25. }
  26. }
  27. ?>
  28. <h4>Top tags</h4>
  29. <ul>
  30. <?php
  31. top_tags();
  32. ?>
  33. </ul>

以上是关于Wordpress-按用法显示前10个标签的主要内容,如果未能解决你的问题,请参考以下文章

使用导航控制器按下后退按钮后如何防止前一个片段显示?

WordPress如何调用随机文章标签

如何在 viewpager 中显示 2 个片段

WordPress - 代码片段插件

由于休息api延迟,视图寻呼机中的第一个片段未显示

WordPress基础知识:条件判断标签及用法大全