Guest User

Untitled

a guest
Feb 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <div class="start-series">
  2. <?php $rows = get_field('actor');
  3. if($rows){
  4. echo '<ol class="people scroller">';
  5. foreach($rows as $row){
  6. echo '<li class="card"><a href='. $term_link .'><img width="138px" height="175px" class=" profile fade lazyautosizes lazyloaded" src=' . $row['image-profile'] . ' alt=' . $row['primeiro_nome'] . '> </a><p><a href='. get_permalink($term_link) .'>'. $row['primeiro_nome'] . ' ' . $row['ultimo_nome'] . '</a></p><p class="character"> ' . $row['personagem_atual'] . '</p></li>';
  7. }
  8. echo '</ol>';
  9.  
  10. }
  11.  
  12.  
  13. ?>
Add Comment
Please, Sign In to add comment