Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. <ul class="search-result">
  2. <ul class="program__list">
  3. <?php foreach ( $posts_ as $pst ) : ?>
  4. <?php if ( $pst['post_type'] == 'programa' ) : ?>
  5. <li class="program__item">
  6. <a href="<?php echo $pst[ 'link' ]; ?>">
  7. <figure class="program__image mask">
  8. <figcaption class="program__caption">
  9. <?php if ( $pst[ 'titulo' ] ) :?>
  10. <h2 class="program__title"><?php echo $pst[ 'titulo' ]; ?></h2>
  11. <?php endif; ?>
  12.  
  13. </figcaption>
  14. <img src="<?php echo $pst[ 'img' ]; ?>" alt="<?php echo $pst[ 'titulo' ]; ?>">
  15. </figure>
  16. </a>
  17. </li>
  18. <?php else: ?>
  19. <li class="card">
  20. <a class="card__link-post" href="<?php echo $pst[ 'link' ]; ?>">
  21. <div class="card__content">
  22. <?php if ( array_key_exists( 'categoria', $pst ) && $pst[ 'categoria' ] ) : ?>
  23. <h4 class="card__cat"><?php echo $pst[ 'categoria' ][ 'nome' ]; ?></h4>
  24. <?php endif; ?>
  25. <?php if ( $pst[ 'titulo' ] ) : ?>
  26. <h3 class="card__title"><?php echo $pst[ 'titulo' ]; ?></h3>
  27. <?php endif; ?>
  28.  
  29. <?php if ( $pst[ 'resumo' ] ) : ?>
  30. <p class="card__desc"><?php echo $pst[ 'resumo' ]; ?></p>
  31. <?php endif; ?>
  32. </div>
  33. <?php if ( $pst[ 'img' ] ) : ?>
  34. <figure class="card__figure">
  35. <img class="card__thumb" src="<?php echo $pst[ 'img' ]; ?>" alt="#titulo-card">
  36. </figure>
  37. <?php endif; ?>
  38. </a>
  39. </li>
  40. <?php endif; ?>
  41. <?php endforeach; ?>
  42. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement