hexo-theme-fluid icon indicating copy to clipboard operation
hexo-theme-fluid copied to clipboard

在Front-matter中禁用评论无效的修复

Open appotry opened this issue 9 months ago • 0 comments

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

appotry avatar Mar 31 '25 11:03 appotry