[fix] related_posts title (#485)

This commit is contained in:
纸鹿/Zhilu 2024-06-12 21:59:05 +08:00 committed by GitHub
parent 5f9389806b
commit cf25565fab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ function layoutDiv() {
var el = ''; var el = '';
el += `<div class="related-wrap${scrollreveal(' ')}" id="related-posts">` el += `<div class="related-wrap${scrollreveal(' ')}" id="related-posts">`
el += popular_posts_wrapper({ el += popular_posts_wrapper({
title: __('meta.related_posts'), title: theme.article.related_posts.title || __('meta.related_posts'),
json: popular_posts_json({ maxCount: theme.article.related_posts.max_count , ulClass: 'related-posts' , PPMixingRate: 0.2 , isImage: true , isExcerpt: true} , page ) json: popular_posts_json({ maxCount: theme.article.related_posts.max_count , ulClass: 'related-posts' , PPMixingRate: 0.2 , isImage: true , isExcerpt: true} , page )
}); });
el += '</div>'; el += '</div>';