Guest User

service-one.php

a guest
Apr 29th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. <?php //Template name: Service Template 1
  2. get_header();
  3. get_template_part('blog','cover'); ?>
  4. <div class="container-fluid services space">
  5. <div class="container">
  6. <div class="col-md-12 service-content"><?php the_post();
  7. the_content(); ?>
  8. </div>
  9. <div class="row">
  10. <?php $args = array( 'post_type' => 'hc_services','posts_per_page' =>-1);
  11. $service = new WP_Query( $args );
  12. if( $service->have_posts() ){
  13. while ( $service->have_posts() ) : $service->the_post(); ?>
  14. <?php if(get_post_meta( get_the_ID(), 'service_button_link', true )){ $service_link= get_post_meta( get_the_ID(), 'service_button_link', true ); }else{ $service_link= get_the_permalink(); } ?>
  15. <div class="col-md-4 col-sm-6 service">
  16. <a class="icon-link" href="<?php echo $service_link; ?>" <?php if(get_post_meta( get_the_ID(),'service_button_target', true )) { echo 'target="_blank"'; }?> >
  17. <?php if(get_post_meta( get_the_ID(), 'service_font_awesome_icons', true )){ ?>
  18. <span class="<?php echo get_post_meta( get_the_ID(), 'service_font_awesome_icons', true ); ?> icon"></span>
  19. <?php }else if(has_post_thumbnail()){ $thumbs = "img-responsive service_home_thumb" ; ?>
  20. <div class="img-thumbnail">
  21. <?php the_post_thumbnail('service_home_thumb', $thumbs); ?>
  22. </div>
  23. <?php } ?>
  24. </a>
  25. <div class="col-md-12">
  26. <h3><a href="<?php echo $service_link; ?>" <?php if(get_post_meta( get_the_ID(),'service_button_target', true )) { echo 'target="_blank"'; }?> ><?php the_title(); ?></a></h3>
  27. <p><?php the_excerpt(); ?></p>
  28. </div>
  29. </div>
  30. <?php endwhile;
  31. }else{
  32. for($i=1; $i<=6; $i++){ ?>
  33. <a href="">
  34. <div class="col-md-4 col-sm-6 service">
  35. <span class="fa fa-ambulance icon"></span>
  36. <div class="col-md-12">
  37. <h3>Psychological Counceling</h3>
  38. <p>We Will put together a detailed and specific style guide that covers all areas of your brand to ansure that anything.</p>
  39. </div>
  40. </div>
  41. </a>
  42. <?php } } ?>
  43. </div>
  44. </div>
  45. </div>
  46. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment