Code hiển thị lượt xem bài viết wordpress
Thông có thể chúng ta sẽ plugin đếm số lượt view, hiện nay sở hữu khá là đa dạng plugin Giúp cho việc này, ở nội dung bài viết này chúng ta sẽ tiêu dùng code nhằm giảm thiểu bị đẩy mạnh tốc độ. quý khách copy đoạn code dưới đây và dán vào function nhéfunction setPostViews()$postID = get_the_ID();$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);
Sau đó chúng ta dùng hàm setPostViews(); dán nó vào bên trong tầm lặp của nội dung bài viết tại file single.php của theme bạn đang tiêu dùng.
Sau đó các bạn thường tiêu dùng hàm sau để hiển thị ra số lượt view nhé. quý khách mở file functions.php lên và thêm vào nhé
Ở đây mình sẽ dùng hook của Flatsome để tìm đến hàm này ra với icon eyes. Mình tiêu dùng font dashicon, nên người dùng nào tiêu dùng fontawsome hay font khác thì thường xuyên tự đổi thay nhé. Thêm dashicon vào frontend
function getPostViews() $postID = get_the_ID(); $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;
add_action( 'wp_enqueue_scripts', 'load_dashicons_front_end' ); function load_dashicons_front_end() wp_enqueue_style( 'dashicons' ); add_action('flatsome_blog_post_after','get_total_like'); function get_total_like();?> <div class="pt-view-cmt"> <div class="pt-cmt"> <span class="dashicons dashicons-admin-comments"></span> <span><?php echo get_comments_number();?></span> </div> <div class="pt-view"> <span class="dashicons dashicons-visibility"></span> <span><?php echo getPostViews(get_the_ID()); ?></span> </div> </div> <?php
Lê Trương Tấn Lộc (sieutocviet.com)
Có hơn 5 năm thực chiến CSS, JS 6 năm thực chiến trong quản trị web site tư vấn giải pháp SEO từ khóa, Kinh doanh online tối ưu nhất cho công ty.
Hiện giữ chức vụ trưởng phòng kinh doanh tại Siêu Tốc Việt.