Created
June 23, 2015 17:58
-
-
Save SeanChDavis/f01ac142d969ede56db9 to your computer and use it in GitHub Desktop.
Vendd filter - download sales count in sidebar
This file contains 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
// 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