在Movable Type 4.2上,不需要插件就可以实现留言最多文章一览的设定。
代码如下
代码如下
<mt:If tag="BlogCommentCount">
留言最多文章一览
<mt:Entries sort_by="comment_count" limit="10">
<mt:EntriesHeader>
<div class="widget-comment-ranking widget-archives widget">
<h3 class="widget-header"></h3>
<div class="widget-content">
<ol>
</mt:EntriesHeader>
<li><a href="<$mt:EntryPermalink$>"><$mt:EntryTitle$></a> (<$MTEntryCommentCount$>)</li>
<mt:EntriesFooter>
</ol>
</div>
</div>
</mt:EntriesFooter>
</mt:Entries>
</mt:If>将
上面
的BlogCommentCount
变为BlogPingCount
,
comment_count变为
ping_count之后就可以变为最多引用一览的设定了。