From e9c5f0d68ebc7015b65a9fbc391a4dda1297b2a7 Mon Sep 17 00:00:00 2001 From: briankelleher Date: Wed, 27 Apr 2016 11:39:05 -0400 Subject: [PATCH] no limit on work thumbnails on services page --- www/wp-content/themes/ation2016/page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/wp-content/themes/ation2016/page.php b/www/wp-content/themes/ation2016/page.php index 2ed1c4d..847553d 100755 --- a/www/wp-content/themes/ation2016/page.php +++ b/www/wp-content/themes/ation2016/page.php @@ -45,7 +45,7 @@ $context['services'] = Timber::get_terms('service'); $proj_args = array( 'post_type' => 'project', - 'posts_per_page' => 10, + 'posts_per_page' => -1, ); $context['projects'] = Timber::get_posts( $proj_args ); }