Skip to content

Instantly share code, notes, and snippets.

@mennwebs
Created September 21, 2021 14:14
Show Gist options
  • Select an option

  • Save mennwebs/b81f66aea26e3e113fd2aa54b4aeb34c to your computer and use it in GitHub Desktop.

Select an option

Save mennwebs/b81f66aea26e3e113fd2aa54b4aeb34c to your computer and use it in GitHub Desktop.
Seed Stat Pro - Change Post Views for specific Post ID.
<?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