【发布时间】:2016-08-23 08:13:38
【问题描述】:
我想使用Hexo 在我的主页上显示 5 个随机帖子,但似乎无法正常工作?!我将 'date' 更改为 'random' 但没有用。
代码:
<ul>
<% site.posts.sort('date', -1).limit(5).each(function(post){ %>
<li>
<a href="<%- url_for(post.path) %>"><%= post.title || '(no title)' %></a>
</li>
<% }) %>
</ul>
【问题讨论】: