我在侧边栏中有一个带有标签的hexo博客。
下面的代码列出了每个博客文章的所有标签。
我该如何限制列出的标签,以仅显示包含2个或更多帖子的标签?
<% if (site.tags.length){ %>
<div class="widget-wrap">
<h3 class="widget-title"><%= __('tags') %></h3>
<div class="widget">
<%- list_tags({show_count: theme.show_count}) %>
</div>