Advertisement
Guest User

archive-subcat

a guest
Jan 15th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div class="container">
  4. <div class="row">
  5. <div class="col s12 m12 l12">
  6. <?php if ( function_exists('yoast_breadcrumb') )
  7. {yoast_breadcrumb('<div id="breadcrumbs">','</div>');}
  8. ?>
  9. </div>
  10. <!-- .bread -->
  11.  
  12. <section>
  13. <h1 class="col s12 m12 l12 titleHome"><span><?php single_cat_title(); ?></span></h1>
  14.  
  15. <ul class="listarBlog">
  16. <?php
  17. query_posts('showposts=8&cat=3');
  18. while (have_posts()) : the_post();
  19. { $category = get_the_category();
  20. ?>
  21. <li class="col s12 m4 l4">
  22. <a href="<?php the_permalink(); ?>">
  23. <figure><?php the_post_thumbnail('thumb_blog'); ?></figure>
  24. <h2><?php echo get_the_title(); ?></h2>
  25. <p><i class="fa fa-file-text"></i> <?php echo $category[0]->cat_name ?> /</p>
  26. <small><i class="fa fa-calendar"></i> <?php echo get_the_date(); ?></small>
  27. <span class="verMais">Saiba Mais <i class="fa fa-angle-double-right"></i></span>
  28. </a>
  29. </li>
  30. <?php } endwhile; ?>
  31. </ul>
  32.  
  33. <div class="col s12 m12 l12 pagination">
  34. <?php pagination_funtion(); ?>
  35. </div>
  36. <!-- .pagination -->
  37. </section>
  38.  
  39.  
  40. </div>
  41. <!-- .row -->
  42. </div>
  43. <!-- .container -->
  44.  
  45. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement