我们在使用 WordPress 建设大部分网站中,在文章页的顶部方式浏览次数统计,是很多博客或者网站常用的展示方法,通过这个数据,访客可以判断这篇文章受欢迎的程度,站长也可以通过这个数据来t ] h R % Y B z F分析自己的文章质量。在主题r I $ @ k x根目录下的 functions.php 文件中添加以下代码并保存。
- add_action('wp_head', '_post_views_record');
- //增加文章访问量
- function _post_views_record\ \ f s S ( P(){
- if (is_singular()) {
- global $post;
- $post_ID = $_ ~ ] ! + q Tpost->ID;
- if ($post_ID) {
- $post7 c A_views = (int) get_post_me1 i s L i m [ta($post_ID, 'views', true);
- if (!update_post_meta($post, V F_ID, 'views', ($post_views + 1))) {
- add_post_meta($post_ID, 'views', 1, true);
- }
- }
- }a ( ?;
- }
- //前端调用4 W p 5 R @
- function _get_post_views(){
- global $post;
- $post_ID = $post->ID;
- $views. F f 2 q = (int) get_I L * : R ` = k &post_meta($post_ID, 'views', true);
- return $viewsg 9 s / % n;
- }
- //后台展示访问数量
- if(!function_exists('AddViewsColumn')){
- func. H =tion AddViewsColum~ \ 4 C vn($colsH i y p 2 x G A041;{
- $cols['views'] = __('阅读');
- return $cols;
- }
- function GetViewsValue($column_name, $post_id): 5 6 U Q 2 m K23;
- $views = (int) get_post_meta($post_id, 'viewsQ x .', true);
- ech; x - O X $ o z Ao $views;
- }f ^ r ` C;
- // for posts
- add_filter('manage_posts_colum% a P 6 ons', 'AddViewsColumn');
- add_action('manage_posts_custom_column', 'GetViewsValue', 10, 2);
- // for pages
- add_filter('manage_pY : x \ages_columns', 'AddViewsColumn');
- add_action('my j D $ J 5 &anage_pages_custom_column', 'GetViewsValue'0 D . G 1, 10, 2);
- }
后台效果
前端调用
- <?php
- //浏览计数
- echo _get_post_views();F 7 4 M
- ?>