Post View
आपके द्वारा लिखा हुआ पोस्ट जब आप अपने वेबसाईट/ब्लॉग से पब्लिश करते है और पब्लिश होने के बाद से ही उस पोस्ट को कितने views हुए यह देखने के लिए आप अपने वॉर्डप्रेसस मे पोस्ट व्यू function जोड़ सकते है ।
Video
[embedyt] https://www.youtube.com/watch?v=KHXNhqNS5yo[/embedyt]
कैसे जोड़े पोस्ट व्यू function
>> सबसे पहले आप function.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 View"; } return $count.' Views'; } // function to count views. 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); } } // Add it to a column in WP-Admin add_filter('manage_posts_columns', 'posts_column_views'); add_action('manage_posts_custom_column', 'posts_custom_column_views',5,2); function posts_column_views($defaults){ $defaults['post_views'] = __('Views'); return $defaults; } function posts_custom_column_views($column_name, $id){ if($column_name === 'post_views'){ echo getPostViews(get_the_ID()); } }
>> अब आप single.php मे नीचे हुए कोड को loop कोड के बीच मे पेस्ट कर दे –
<?php setPostViews(get_the_ID()); ?>
>> अब आप अपने वेबसाईट मे पोस्ट व्यू के काउन्ट को जहा दिखाना चाहते हों वहा आप नीचे दिए हुए कोड को पेस्ट कर दें –
<?php echo getPostViews(get_the_ID()); ?>
तो इस तरह से आप अपने WordPress वेबसाईट मे पोस्ट व्यू अपने वेबसाईट ऐड्मिन मे और पोस्ट व्यू काउन्ट अपने विजिटर्स को दिखा सकते है ।