Advertisement
Guest User

Untitled

a guest
Feb 7th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. // Variable vide pour l'affichage le HTML à la fin
  3. $output = '';
  4. $output .= '<h3 class="rotate">';
  5.     // Début de la boucle
  6.     while ( have_rows('ap_textes', $acfw) ) : the_row();
  7.  
  8.     // Affichage du texte
  9.         $output .= get_sub_field('ap_texte');
  10.         $output .= '<span class="separator">*</span>';
  11.     // fin de la boucle
  12.     endwhile;
  13. $output .= '</h3>';
  14.  
  15. // Affichage de tout le contenu HTML
  16. echo $output;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement