UNPKG

hexo-related-popular-posts

Version:

A hexo plugin that generates a list of links to related posts and popular posts. Also , this plugin can get Visitor Counts (PageView) on posts.

24 lines (20 loc) 677 B
module.exports = (inPost, inHexo) => { let pv = getPV(inPost, inHexo) return pv } let getPV = ( inPost, inHexo) => { let pv = 0 if (inPost != undefined) { for (let i = 0; i < inHexo.config.popularPosts.tmp.gaData.length; i++) { if (inHexo.config.popularPosts.tmp.gaData[i].path == inPost.path) { if (inHexo.config.popularPosts.tmp.pvMeasurementsStartDate != '') { pv = inHexo.config.popularPosts.tmp.gaData[i].totalPV } else { pv = inHexo.config.popularPosts.tmp.gaData[i].pv } break } } } return pv }