Name | Update Time |
Netflix | September 6, 2024 9:17 am |
Disney+ | September 6, 2024 10:56 am |
Max | September 6, 2024 11:15 am |
ChatGPT 4 | September 4, 2024 4:23 pm |
Spotify | September 6, 2024 2:30 pm |
Prime Video | September 6, 2024 2:55 pm |
Codecademy | September 6, 2024 2:40 pm |
Grammarly | September 3, 2024 1:46 pm |
Canva Pro | September 5, 2024 2:52 pm |
Udemy Premium Cookies | September 2, 2024 2:53 pm |
How to Display Total Views on WordPress Posts
Place the code in your functions.php file
function getPostViews($postID){getPostViews(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 View"; } return $count.' Views'; } function setPostViews($postID) {setPostViews(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); } }
In the place where the article title or article content is called like single.php, call setPostViews(get_the_ID()); to count each time the article is opened.
Example: Count after calling the article content
<?php echo $post->post_content;setPostViews(get_the_ID()); ?>
The number of views is usually displayed below the title in the article. Call getPostViews(get_the_ID()) in single.php; The number of views also needs to be displayed in the article list. In this case, call it in category.php.
Example: Article title
<h2><?php the_title();?></h2>
<span>Views: <?php echo getPostViews(get_the_ID()); ?></span>
Example: Article list (same as above)
<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
Call in loop article
<span>Views: <?php echo getPostViews(get_the_ID());?></span>
<?php endwhile; ?>
<div><?php wp_pagenavi(); ?></div>//Paging function
<?php endif; ?>
Search
Popular on Blogar
Email Marketing-What Is Email Marketing?
- October 24th, 2023
- 907 Views
2024 Codecademy Premium Account Cookies
- September 6th, 2024
- 1169 Views
2024 Grammarly Premium Account Cookies
- September 3rd, 2024
- 2044 Views
2024 ChatGPT 4 Premium Account Free Cookies
- September 4th, 2024
- 1999 Views
2024 Canva Pro Free Team Invite Link And Cookies
- September 5th, 2024
- 3376 Views
Perplexity AI Premium Cookies 2024
- April 17th, 2024
- 1186 Views
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1188 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1346 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1066 Views
WordPress displays subcategories of the current category
- July 16th, 2024
- 93 Views
How To Find The IP Of Any Whatsapp Call
- September 3rd, 2024
- 9 Views
Gmail Account Generation Method #1
- September 4th, 2024
- 9 Views
Install Google Tag Manager on your website
- July 23rd, 2024
- 84 Views
2024 Spotify Premium Account Cookies
- September 6th, 2024
- 829 Views
How to Create a Blog Page on WordPress
- July 19th, 2024
- 82 Views
Recent Post
2024 Codecademy Premium Account Cookies
- September 6th, 2024
- 1169 Views
2024 Grammarly Premium Account Cookies
- September 3rd, 2024
- 2044 Views
2024 ChatGPT 4 Premium Account Free Cookies
- September 4th, 2024
- 1999 Views
2024 Canva Pro Free Team Invite Link And Cookies
- September 5th, 2024
- 3376 Views
Perplexity AI Premium Cookies 2024
- April 17th, 2024
- 1186 Views
Email Marketing-What Is Email Marketing?
- October 24th, 2023
- 907 Views
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1188 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1346 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1066 Views
Gmail Account Generation Method #1
- September 4th, 2024
- 9 Views
More Post
- Howo Tractor Truck
- Howo Tipper/Dump Truck
- Howo Cargo Truck
- Howo Concrete Mixer Truck
- Howo Special Truck
- Howo Light Truck
- Shacman Tractor Truck
- Shacman Tipper/Dump Truck
- Shacman Cargo Truck
- Shacman Concrete Mixer Truck
- LGMG Mining Trucks
- XCMG Wheel Loader
- XCMG Excavator
- XCMG Crane
- XCMG Asphalt Pavers
- XCMG Road Roller
- Shantui Bulldozer
Copyright © 2024 BBBBF All Rights Reserved.