Title: increase views
Last modified: August 30, 2016

---

# increase views

 *  Resolved [sakicmilan](https://wordpress.org/support/users/sakicmilan/)
 * (@sakicmilan)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/increase-views/)
 * hi, is possible to increase post views for some multiplicator, for ex, x1,8
 * and about this [https://wordpress.org/support/topic/add-commas-to-numbers?replies=4](https://wordpress.org/support/topic/add-commas-to-numbers?replies=4)
 * where i need to add that code?
 * [https://wordpress.org/plugins/post-views-counter/](https://wordpress.org/plugins/post-views-counter/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [dFactory](https://wordpress.org/support/users/dfactory/)
 * (@dfactory)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/increase-views/#post-6435650)
 * There’s a pvc_get_post_views filter hook that allows you to modify that, including
   the kind of multiplier you mentioned above.
 * Example:
 *     ```
       // modify views count
       function custom_pvc_get_post_views( $post_views, $post_id ) {
       	return (int) $post_views * 1.8; // or any other multiplier, can be different for each post as you have post id here
       }
       add_filter( 'pvc_get_post_views', 'custom_pvc_get_post_views', 10, 2 );
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘increase views’ is closed to new replies.

 * ![](https://ps.w.org/post-views-counter/assets/icon-256x256.png?rev=2973820)
 * [Post Views Counter](https://wordpress.org/plugins/post-views-counter/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/post-views-counter/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/post-views-counter/)
 * [Active Topics](https://wordpress.org/support/plugin/post-views-counter/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/post-views-counter/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/post-views-counter/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [dFactory](https://wordpress.org/support/users/dfactory/)
 * Last activity: [10 years, 9 months ago](https://wordpress.org/support/topic/increase-views/#post-6435650)
 * Status: resolved