From 4e68617054f1279489fdef13f2e396cec8b4900c Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Tue, 2 Aug 2016 14:03:03 -0400 Subject: [PATCH] fixed sytanx error in the nav image map args array --- parts/community-map.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/parts/community-map.php b/parts/community-map.php index 94a9450..38e666a 100644 --- a/parts/community-map.php +++ b/parts/community-map.php @@ -27,7 +27,7 @@ 'page', 'post__in' => array(276,275,274,273,983,981,985), 'posts_per_page' => -1, @@ -35,24 +35,24 @@ // 'post__in' => array(69,71,73,75, 77, 79) ); -$posts = get_posts($args); +$nav_posts = get_posts($nav_args); -foreach ($posts as $p){ +foreach ($nav_posts as $p){ $sites[$p->ID] = get_permalink($p->ID); } $js_sites = json_encode($sites); ?> + \ No newline at end of file + -- 2.17.1