From: Laury GvR Date: Wed, 6 Jun 2018 16:55:09 +0000 (-0400) Subject: Rename fact slider variables for clarity X-Git-Tag: v1.0.0^2~14 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=0669ded6f49fda683cd9f215ecc89fa2d4f8b9f5;p=WP-Themes%2Fsafeinnm.git Rename fact slider variables for clarity --- 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 "
  • "; }