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

请问如何隐藏指定文章

Open Huanhoo opened this issue 7 years ago • 1 comments

我有一些文章不想公开,希望对外隐藏,只可以通过url访问到,请问我该如何做?

Huanhoo avatar Mar 07 '17 06:03 Huanhoo

以下為小弟淺見,不訪參考看看 可以自己加

  • layout/ private_post.ejs
<% if (config.private_post == true){ 
  <%-partial('post')%>
%>
  • scaffold/ private_post.md
title: {{ title }}
subtitle:
private_post: true
date: {{ date }}
tags:

(因為幾乎都跟原來的post一樣,所以改起來應該比較輕鬆) 這時hexo new private_post "your-title"應該就可以了^__^

YenYuHsuan avatar Mar 20 '17 12:03 YenYuHsuan