佛山市桂城建设局网站,网页的构成,网站是自己做还是让别人仿,泉州握旗公司网站建设1、把下面这段代码加在想显示文章浏览次数的位置#xff08;例如模板内的content.php#xff09; ?php setPostViews(get_the_ID()); echo getPostViews(get_the_ID()); ?
2、如果需要在列表页显示查看次数#xff0c;那么建议在列表页需要显示查看次数的位置单独…1、把下面这段代码加在想显示文章浏览次数的位置例如模板内的content.php ?php setPostViews(get_the_ID()); echo getPostViews(get_the_ID()); ?
2、如果需要在列表页显示查看次数那么建议在列表页需要显示查看次数的位置单独添加下面的代码 ?php echo getPostViews(get_the_ID()); ?
把下面这段代码加在模板文件夹内的functions.php文件内 //统计文章浏览次数 function getPostViews($postID){ $count_key post_views_count; $count get_post_meta($postID, $count_key, true); if($count){ delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, 0); return 0 查看; } return $count. 查看; } function setPostViews($postID) { $count_key post_views_count; $count get_post_meta($postID, $count_key, true); if($count){ $count 0; delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, 0); }else{ $count; update_post_meta($postID, $count_key, $count); } } 文章来源https://www.technicalanalysis.cn/ --------------------- 作者a1079540945 来源CSDN 原文https://blog.csdn.net/a1079540945/article/details/84548302 版权声明本文为博主原创文章转载请附上博文链接