Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- copy this code and paste to function.php
- -----------------------^---------------------
- <?php
- /* Visit Counter For WordPress by salmancreation.com */
- 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 বার";
- }
- return $count.' বার';
- }
- 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);
- }
- }
- ?>
- ----function.php-----------------------code end----------------------------------->
- ======================================================================
- copy this code it and paste a in your index.php where you want |>
- ======================================================================
- <span class="catagoryHeading">সর্বাধিক পঠিক সংবাদ</span>
- <ul class="catagory">
- <?php
- $popularpost = new WP_Query( array( 'posts_per_page' => 5, 'meta_key' => 'post_views_count', 'orderby' => 'meta_value_num', 'order' => 'DESC' ) );
- while ( $popularpost->have_posts() ) : $popularpost->the_post();?>
- <li>
- <a href="<?php the_permalink() ?>">"<?php the_title();?></a>
- </li>
- <?php endwhile; ?>
- <?php wp_reset_query(); ?>
- </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement