Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created June 23, 2015 17:58
Show Gist options
  • Save SeanChDavis/f01ac142d969ede56db9 to your computer and use it in GitHub Desktop.
Save SeanChDavis/f01ac142d969ede56db9 to your computer and use it in GitHub Desktop.
Vendd filter - download sales count in sidebar
// download-specific
function example_vendd_sales_count( $count, $post ) {
if ( $post->ID == 123 ) {
$count = 1000;
}
return $count;
}
add_filter( 'vendd_download_sales_count', 'example_vendd_sales_count', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment