Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created June 23, 2015 18:01
Show Gist options
  • Save SeanChDavis/8b1b16f486fbec19c7d1 to your computer and use it in GitHub Desktop.
Save SeanChDavis/8b1b16f486fbec19c7d1 to your computer and use it in GitHub Desktop.
Vendd filter - download version number
// download-specific
function example_vendd_version( $version, $download ) {
if ( $download->ID == 123 ) {
$version = '2.4.2';
}
return $version;
}
add_filter( 'vendd_download_version', 'example_vendd_version', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment