如何获取 MODx 中最受欢迎的文章列表?
有没有办法获得 MODx 中最受欢迎(浏览次数最多)文章的列表? getResources 的文档在这方面没有说明任何内容。
Is there any way to get a list of most popular(most viewed) articles in MODx? The documentation for getResources doesn't say anything in this context.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用片段 页面点击计数器 和 页面点击计数器结果,用于计算访问次数并将其显示在您的网站上。
You could use the snippets Page hit counter and Page Hit Counter results to count visits and display them on your site.
现在有一个专门的解决方案,使用称为“MostPopular”的“Extra”。 https://modx.com/extras/package/mostpopular
您可以通过调用来跟踪页面浏览量片段
[[!mpLogPageView]]
,随后当您想要列出最流行的资源时,您可以调用[[mpResources]]
并将输出传递到 getResources Snippet 进行模板化。There’s a dedicated solution for this now, using the “Extra” called “MostPopular”. https://modx.com/extras/package/mostpopular
You would track page views by calling the Snippet
[[!mpLogPageView]]
and subsequently when you want to list the most popular resources you call[[mpResources]]
and pass the output to the getResources Snippet for templating.