https://github.com/jixiaod/hexo-next-list-related-posts
A hexo plugin that generates a list of related posts on The Theme Next.
https://github.com/jixiaod/hexo-next-list-related-posts
hexo next related-posts
Last synced: 3 months ago
JSON representation
A hexo plugin that generates a list of related posts on The Theme Next.
- Host: GitHub
- URL: https://github.com/jixiaod/hexo-next-list-related-posts
- Owner: jixiaod
- License: mit
- Created: 2017-04-10T04:30:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-11T03:25:40.000Z (about 8 years ago)
- Last Synced: 2024-10-09T09:22:42.236Z (8 months ago)
- Topics: hexo, next, related-posts
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hexo-next-list-related-posts
A hexo plugin that generates a list of related posts on The Theme Next.
## Demo
[http://blog.100dos.com/2017/04/07/php-garbage-collection-collect-cycles/](http://blog.100dos.com/2017/04/07/php-garbage-collection-collect-cycles/)## Install
```sh
$ npm install hexo-next-list-related-posts --save
```## Usage
In file `themes/next/layout/_macro/post.swig`, Add
```
{% set related_post = list_related_posts(post, {maxCount: 10, orderBy: 'date'}) %}
{% if related_post.length > 0 %}
相关文章
{% endif %}
```