Guest User

Untitled

a guest
Jan 20th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. [showyamap]
  2. [placemark coordinates="53.709992,32.654287" ]
  3. [placemark coordinates="51.886690,38.436733" ]
  4. [placemark coordinates="51.886690,38.436733" ]
  5. [/showyamap]
  6.  
  7. <?php if( have_rows('mo_ml') ): ?>
  8. <?php $begin_shortcode = ('[showyamap]'); ?>
  9. <?php $end_shortcode = ('[/showyamap]'); ?>
  10. <?php echo $begin_shortcode ?>
  11.  
  12. <?php while( have_rows('mo_ml') ): the_row(); ?>
  13.  
  14.  
  15. <?php if( have_rows('mo_places') ): ?>
  16. <?php while( have_rows('mo_places') ): the_row(); ?>
  17.  
  18. <?php $mo_lattitude = get_sub_field( 'massimo_lattitude');
  19. $mo_longitude = get_sub_field( 'mo_longitude');
  20.  
  21. echo ('[placemark coordinates="'. $mo_lattitude .',' . $mo_longitude .'" ]');
  22. ?>
  23.  
  24. <?php endwhile; ?>
  25. <?php endif; ?>
  26. <?php endwhile; ?>
  27. <?php echo $end_shortcode ?>
  28. <?php endif; ?>
Add Comment
Please, Sign In to add comment