Hexo和Next主題的相關設置(持續更新)
字數統計和閲讀時長(網站底部/文章内)效果如圖 文章内 網頁頂部 安裝插件1npm install hexo-symbols-count-time --save 修改 站點配置文件1234567symbols_count_time: #文章内是否顯示 symbols: true time: true # 網頁底部是否顯示 total_symbols: true total_time: true 修改 主題配置文件123456789101112# Post wordcount display settings# Dependencies: https://github.com/theme-next/hexo-symbols-count-timesymbols_count_time: separated_meta: true #文章中的顯示是否顯示文字(本文字數|閱讀時長) item_text_post: true #網頁底部的顯示是否顯示文字(站點總字數|站點閱讀時長) item_text_total: false # Average Word Length (c ...