Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <section id="services">
  2.  
  3. <div class="container">
  4.  
  5. <h2></h2>
  6. <p class="lead"></p>
  7.  
  8. <?php query_posts('posts_per_page=3&cat=6&post_type=our_services'); ?>
  9.  
  10. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  11.  
  12. <div class="row">
  13.  
  14.  
  15. <div class="col-sm-4">
  16.  
  17.  
  18. <?php if ( has_post_thumbnail()) { $url = wp_get_attachment_url( get_post_thumbnail_id() ); ?>
  19.  
  20. <img src="<?php echo $url; ?>" alt="<?php the_title() ?>">
  21.  
  22. <h3><?php the_title() ?></h3>
  23. <p><?php the_excerpt() ?></p>
  24. <a href="<?php the_permalink() ?>" class="btn btn-success">Learn more <i class="fa fa-angle-right" aria-hidden="true"></i></a>
  25.  
  26.  
  27. </div><!-- col -->
  28.  
  29.  
  30. </div><!-- row -->
  31.  
  32. <?php } ?>
  33.  
  34. <?php endwhile; endif; ?>
  35.  
  36. </div><!-- container -->
  37. </section><!-- services -->
  38.  
  39. <?php wp_reset_query(); ?>
  40.  
  41. <section id="services">
  42.  
  43. <div class="container">
  44.  
  45. <h2></h2>
  46. <p class="lead"></p>
  47.  
  48. <?php query_posts('posts_per_page=3&cat=6&post_type=our_services'); ?>
  49.  
  50. <div class="row">
  51.  
  52. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  53.  
  54.  
  55. <div class="col-sm-4">
  56.  
  57.  
  58. <?php if ( has_post_thumbnail()) { $url = wp_get_attachment_url( get_post_thumbnail_id() ); ?>
  59.  
  60. <img src="<?php echo $url; ?>" alt="<?php the_title() ?>">
  61.  
  62. <h3><?php the_title() ?></h3>
  63. <p><?php the_excerpt() ?></p>
  64. <a href="<?php the_permalink() ?>" class="btn btn-success">Learn more <i class="fa fa-angle-right" aria-hidden="true"></i></a>
  65.  
  66.  
  67. </div><!-- col -->
  68.  
  69. <?php } ?>
  70.  
  71. <?php endwhile; endif; ?>
  72.  
  73. </div><!-- row -->
  74.  
  75. </div><!-- container -->
  76. </section><!-- services -->
  77.  
  78. <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement