You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/docs/theme-settings/posts.md
+18-3Lines changed: 18 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -211,7 +211,7 @@ tag_icon: true
211
211
212
212
### Donate Settings
213
213
214
-
More and more online blogging platforms (e.g. WeChat public accounts, Jianshu, Zhihu) support donate (sponsor). To catch paid reading trends, we added donate feature, supports WeChat, Alipay and Bitcoin. What you need is:
214
+
NexT theme provides a donation feature that allows readers to show appreciation for your work. You can display QR codes for various payment methods (such as WeChat Pay, Alipay, Bitcoin, etc.) at the end of your articles, making it convenient for readers to support your content creation efforts. What you need is:
215
215
216
216
1. Get your WeChat / Alipay / Bitcoin receive money QRcode image(s) and put into `source/images` under {% label primary@theme directory %} or upload it(them) to an image cloud to get the absolute HTTP address(es).
217
217
2. Set needed values in {% label primary@NexT config file %}:
@@ -239,6 +239,8 @@ monero: /images/monero.png
239
239
240
240
### Follow Me
241
241
242
+
NexT theme offers a "Follow Me" feature that enables you to showcase your social media presence and other communication channels. This allows your readers to follow your content across various platforms, helping you build and maintain a stronger connection with your audience. You can display links to popular social networks, messaging platforms, or RSS feeds, each accompanied by its corresponding icon for better visual recognition.
243
+
242
244
```yml NexT config file
243
245
# Subscribe through Telegram Channel, Twitter, etc.
244
246
# Usage: `Key: permalink || icon` (Font Awesome)
@@ -258,7 +260,9 @@ follow_me:
258
260
259
261
### Related Popular Posts
260
262
261
-
NexT supports the related posts functionality according to [hexo-related-posts](https://github.com/sergeyzwezdin/hexo-related-posts).
263
+
The "Related Popular Posts" feature helps you increase reader engagement by displaying a list of related articles in the sidebar. This encourages visitors to explore more of your content that matches their interests, potentially increasing page views and create a better user experience.
264
+
265
+
To utilize this feature, you'll need to install a third-party plugin [hexo-related-posts](https://github.com/sergeyzwezdin/hexo-related-posts) first, as NexT relies on its functionality to analyze and determine content relationships.
262
266
263
267
{% tabs related_posts %}
264
268
<!-- tab Installation → -->
@@ -268,15 +272,26 @@ Install `hexo-related-posts` by executing the following command in {% label info
268
272
npm install hexo-related-posts
269
273
hexo clean
270
274
```
275
+
276
+
Enable this plugin in {% label info@Hexo config file %} by adding the following line:
277
+
278
+
```yml Hexo config file
279
+
related_posts:
280
+
enable: true
281
+
```
282
+
283
+
For more configuration options, please refer to the plugin's documentation.
271
284
<!-- endtab -->
272
285
273
286
<!-- tab <code>enable</code> -->
274
-
You can enable it by setting value `related_posts.enable` to `true` in {% label primary@NexT config file %}.
287
+
You can enable the "Related Popular Posts" feature by setting value `related_posts.enable` to `true` in {% label primary@NexT config file %}.
275
288
276
289
```yml NexT config file
277
290
related_posts:
278
291
enable: true
279
292
```
293
+
294
+
In other words, you have to set `related_posts.enable` to `true` in both {% label info@Hexo config file %} and {% label primary@NexT config file %}, to enable this feature.
0 commit comments