hexo-theme-fluid
hexo-theme-fluid copied to clipboard
在Front-matter中禁用评论无效的修复
<%
var commentType;
if (typeof page.comment === 'boolean' && page.comment === false) {
commentType = false;
} else {
commentType = (typeof page.comment === 'string' && page.comment !== '')
? page.comment
: theme.post.comments.type;
}
%>
代码这样,才能在post文章中设置 comment: false 时禁用评论
不知道作者设计思路是否是这样的
否则,设置comment: false时,原来的代码返回值一直是theme.post.comments.type