Guest User

Untitled

a guest
Feb 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  
  5. Template Name: All Parks Template
  6.  
  7. */
  8.  
  9.  
  10. get_header();
  11.  
  12. if (have_posts()):
  13. while (have_posts()) : the_post(); ?>
  14.  
  15.  
  16. <?php get_template_part( 'template-part/featimage.tp' ); ?>
  17.  
  18.  
  19. <div class="headlinetext">
  20. <p> <?php the_field('tan_intro_box'); ?> </p>
  21. </div>
  22.  
  23.  
  24.  
  25.  
  26. <div class="wrapper clearfix">
  27.  
  28.  
  29. <div class="content-column">
  30. <?php get_template_part( 'template-part/allparks.tp' ); ?>
  31. </div> <!-- END content-column -->
  32.  
  33. <div class="info-column">
  34. <div class="allpark-container">
  35. <div class="allpark clearfix">
  36. <p> hello</p>
  37.  
  38. <?php
  39. wp_reset_postdata();
  40. $stuff = get_field('stuff');
  41.  
  42. echo '<pre>';
  43. var_dump( $stuff );
  44. echo '</pre>';
  45.  
  46. ?>
  47. </div><!-- END allpark container -->
  48. </div><!-- END allpark -->
  49. </div><!-- END info-column -->
  50.  
  51.  
  52.  
  53. </div> <!-- End of Wrapper -->
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60. <?php endwhile;
  61. else :
  62. echo '<p>No content found</p>';
  63.  
  64. endif;
  65. ?>
  66.  
  67.  
  68.  
  69. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment