Skip to content

Instantly share code, notes, and snippets.

@pippinsplugins
Created August 17, 2012 01:18
Show Gist options
  • Select an option

  • Save pippinsplugins/3375105 to your computer and use it in GitHub Desktop.

Select an option

Save pippinsplugins/3375105 to your computer and use it in GitHub Desktop.
<?php
function pw_digitalstore_front_latest_downloads() {
$number = 10; // set this to the number of items you want to show
digitalstore_latest_downloads( array( 'limit' => $number ) );
}
remove_action( 'digitalstore_store_front', 'digitalstore_front_latest_downloads', 2 );
add_action( 'digitalstore_store_front', 'pw_digitalstore_front_latest_downloads', 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment