An open API service indexing awesome lists of open source software.

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.

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 %}
```