Created
September 21, 2021 14:14
-
-
Save mennwebs/b81f66aea26e3e113fd2aa54b4aeb34c to your computer and use it in GitHub Desktop.
Seed Stat Pro - Change Post Views for specific Post ID.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter('sstp_views', 'sstp_change_views',10, 2 ); | |
| function sstp_change_views($num, $postID) { | |
| if ($postID == 123) { | |
| return $num + 500; | |
| } | |
| return $num; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment