From 0669ded6f49fda683cd9f215ecc89fa2d4f8b9f5 Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Wed, 6 Jun 2018 12:55:09 -0400 Subject: [PATCH] Rename fact slider variables for clarity --- parts/facts-slider.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/parts/facts-slider.php b/parts/facts-slider.php index 5fbbf2d..e014d74 100644 --- a/parts/facts-slider.php +++ b/parts/facts-slider.php @@ -16,11 +16,11 @@ while ($facts_loop->have_posts()) { $facts_loop->the_post(); - $post_id = get_the_ID(); - $post_content = get_the_content($post_id); + $fact_id = get_the_ID(); + $fact_content = get_the_content($fact_id); echo '
  • '; - echo $post_content; + echo $fact_content; echo "
  • "; } -- 2.17.1