Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Last active August 29, 2015 14:19
Show Gist options
  • Save SeanChDavis/e1849a0dfa8a8c72f002 to your computer and use it in GitHub Desktop.
Save SeanChDavis/e1849a0dfa8a8c72f002 to your computer and use it in GitHub Desktop.
EDD Downloads taxonomy count adjustment
<?php // DO NOT COPY THIS LINE
// adjust downloads taxonomy loop
function sd_download_tax_count( $query ) {
if( ( $query->is_tax( 'download_category' ) || $query->is_tax( 'download_tag' ) ) && ! is_admin() && $query->is_main_query() ) {
$query->set( 'posts_per_page', 10 );
}
}
add_action( 'pre_get_posts', 'sd_download_tax_count' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment