Advertisement
Guest User

Untitled

a guest
Nov 19th, 2018
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <?php
  2.  
  3. // check if the repeater field has rows of data
  4. if( have_rows('menu_sections') ):
  5.  
  6. // loop through the rows of data
  7. while ( have_rows('menu_sections') ) : the_row();?>
  8.  
  9. <h2>
  10. <?php the_sub_field('section_title');?>
  11. </h2>
  12.  
  13. <?php if(get_sub_field('menu_description')) ?>
  14.  
  15.  
  16.  
  17. <?php
  18. endwhile;
  19.  
  20. else :
  21.  
  22. echo "Ingen retter funnet";
  23.  
  24. endif;
  25.  
  26. ?>
  27.  
  28. <?php
  29.  
  30. // check if the repeater field has rows of data
  31. if( have_rows('section_items') ):
  32.  
  33. // loop through the rows of data
  34. while ( have_rows('section_items') ) : the_row(); ?>
  35.  
  36. <h3>
  37. <?php the_sub_field('rett_navn'); ?>
  38. </h3>
  39. <p>
  40. <?php the_sub_field('rett_beskrivelse'); ?>
  41. </p>
  42. <p>
  43. <?php the_sub_field('rett_allergener'); ?>
  44. </p>
  45. <p>
  46. <?php the_sub_field('rett_pris'); ?>
  47. </p>
  48.  
  49. <?php
  50. endwhile;
  51.  
  52. else :
  53.  
  54. echo "Ingen rader funnet";
  55.  
  56. endif;
  57.  
  58. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement