diff --git a/functions.php b/functions.php index 10d5f56..0cde6a7 100755 --- a/functions.php +++ b/functions.php @@ -1,69 +1,69 @@ is_main_query() ) { /** * Display all the Speakers in one single page * * See https://gitpull.it/T162 * See https://gitpull.it/T178 */ if ( is_tax( 'membertype' ) ) { $query->set( 'nopaging', true ); /** * Increase Podcasts per page * * See https://gitpull.it/T160 * See https://gitpull.it/T178 * */ - } elseif( is_post_type_archive( 'podcast' ) ) { + } elseif( is_post_type_archive( 'podcast' ) || is_tax( 'podcastfilter' ) ) { $query->set( 'posts_per_archive_page', 16 ); } } } );