Guest User

Untitled

a guest
Aug 9th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. <?php
  2. get_header(); ?>
  3. <!-- Page Title Section -->
  4. <div class="page-title-section">
  5. <div class="overlay">
  6. <div class="container">
  7. <div class="row">
  8. <div class="col-md-6">
  9. <div class="page-title"><h1><?php echo _e('Category Archive','appointment'); echo ' '; echo single_cat_title("", false); ?></h1></div>
  10. </div>
  11. <div class="col-md-6">
  12. <ul class="page-breadcrumb">
  13. <?php if (function_exists('qt_custom_breadcrumbs')) qt_custom_breadcrumbs();?>
  14. </ul>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. </div>
  20. <div class="page-builder">
  21. <div class="container">
  22. <div class="row">
  23. <!-- Blog Area -->
  24. <div class="col-md-12">
  25.  
  26. <?php
  27. if ( have_posts() ) :
  28. // Start the Loop.
  29. while ( have_posts() ) : the_post(); ?>
  30. <div class="col-md-6">
  31. <?php get_template_part( 'content',''); ?>
  32. </div>
  33. <?php
  34. endwhile;
  35. endif;
  36. ?>
  37. </div>
  38. <?php
  39. // Previous/next page navigation.
  40. the_posts_pagination( array(
  41. 'prev_text' => '<i class="fa fa-angle-double-left"></i>',
  42. 'next_text' => '<i class="fa fa-angle-double-right"></i>',
  43. ) );
  44. ?>
  45. <!-- /Blog Pagination -->
  46. </div>
  47. <!--Sidebar Area-->
  48. <div class="col-md-4">
  49. <?php get_sidebar(); ?>
  50. </div>
  51. <!--Sidebar Area-->
  52. </div>
  53. </div>
  54. </div>
  55. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment