When you build your own website using WordPress, if you want to display the page views of each article on the website, you will generally use a WordPress page views plug-in, which can conveniently count the page views of each article on our website.
First, add the following code to the wordpress template function functions.php file in the website backend:
/*Show article views*/
function getPostViews($postID){
$count = get_post_meta($postID,’views’, true);
if($count==”){
delete_post_meta($postID,’views’);
add_post_meta($postID,’views’, ‘0’);
return “0”;
}
return $count.”;
}
function setPostViews($postID) {
$count = get_post_meta($postID,’views’, true);
if($count==”){
$count = 0;
delete_post_meta($postID,’views’);
add_post_meta($postID,’views’, ‘0’);
}else{
$count++;
update_post_meta($postID,’views’, $count);
}
}
It can be used wherever you need to display the number of views, including the homepage, category page, and article page.
Add the call code for the number of views:
<?php setPostViews(get_the_ID()); echo number_format(getPostViews(get_the_ID())); ?>
Search
Popular on Blogar
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1489 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1775 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1323 Views
Social Media Marketing – 53 Resources For First Time Entrepreneurs
- October 24th, 2023
- 855 Views
Email Marketing-Advantages and disadvantages of email marketing
- October 24th, 2023
- 805 Views
Search Engine Optimization-Tell Google which pages you don’t want crawled
- October 24th, 2023
- 791 Views
Social Media Marketing – What is Pinterest?
- October 24th, 2023
- 769 Views
Email Marketing-Revenue Generation Email Marketing Campaigns
- October 24th, 2023
- 764 Views
Search Engine Optimization-Let Google see your page the same way a user does
- October 24th, 2023
- 758 Views
Search Engine Optimization-How to Leverage Link Blending and Stage 2 Link Building to Maximize Your Rankings
- October 24th, 2023
- 752 Views
Recent Post
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1489 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1775 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1323 Views
VMware cannot install VMware Tools, prompts VMCI, memory driver
- November 25th, 2024
- 114 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.