Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <div class="col-lg-8">
  2. <!--Entrada-->
  3. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  4. <!--Anuncio-->
  5. <?php if( $wp_query->current_post == 3 ) { ?>
  6. //mianuncio
  7. <?php } ?>
  8. <!--Anuncio-->
  9. <div class="card-body phome">
  10. <a href="<?php the_permalink($post);?>">
  11. <h2 class="entry-title"><?php the_title();?></h2>
  12. </a>
  13. <?php
  14. $sep = '';
  15. foreach ((get_the_category()) as $cat) {
  16. echo $sep . '<a href="' . get_category_link($cat->term_id) . '" class="cathome ' . $cat->slug . '" title="Ver todos los post de '. esc_attr($cat->name) . '">' . $cat->cat_name . '</a>';
  17. $sep = ', ';
  18. }
  19. ?>
  20. <?php the_excerpt();?>
  21. </div>
  22. <?php endwhile; endif; ?>
  23. <!--Entrada-->
  24. <!--Paginacion-->
  25. <div class="card-body">
  26. <?php get_template_part('template-parts/content', 'paginacion');?>
  27. </div>
  28. <!--Paginacion-->
  29. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement