front-page.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php get_header();?>
  2. <div id="content" class="site-content">
  3. <div class="container">
  4. <div class="row gx-5">
  5. <section id="primary" class="col-sm-12 col-lg-6">
  6. <div id="main" class="site-main" role="main">
  7. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <div class="entry-content">
  10. <?php the_content(); ?>
  11. </div>
  12. </article>
  13. <?php endwhile; ?>
  14. </div>
  15. </section>
  16. <section id="secondary" class="col-sm-12 col-lg-6 ms-auto">
  17. <?php $post = get_post(7); $output = apply_filters( 'the_content', $post->post_content ); echo $output; ?>
  18. <h2 class="entry-title mt-5">Hospice Stores</h2>
  19. <div class="row no-gutters">
  20. <?php $upload_dir = wp_upload_dir(); ?>
  21. <img src="<?php echo $upload_dir['baseurl']; ?>/2017/02/Hospice-Store-ribbon-cutting-2015-website-1-scaled.jpg">
  22. <div class="col-sm-12 col-lg-6">
  23. <h5><a href="">Greenwood</a></h5>
  24. <p class="small">
  25. 864-229-9393<br />
  26. 217 North Creek Blvd<br />
  27. Greenwood, SC 29649</p>
  28. </div>
  29. <div class="col-sm-12 col-lg-6">
  30. <h5><a href="">Abbeville</a></h5>
  31. <p class="small">
  32. 864-366-0237<br />
  33. 811 West Greenwood Street<br />
  34. Abbeville, SC 29620</p>
  35. </div>
  36. <a href="" class="btn btn-outline-secondary">Learn More</a>
  37. </div>
  38. <header class="entry-header">
  39. <h2 class="entry-title mt-5">News</h2>
  40. </header>
  41. <div class="">
  42. <?php $mostrecentposts = new WP_Query();
  43. $mostrecentposts = get_posts('numberposts=1');
  44. foreach ($mostrecentposts as $post) : setup_postdata($post); ?>
  45. <div class="row">
  46. <header class="entry-header">
  47. <h3 class="front-page m-0"><?php the_title( '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a>' );?></h3>
  48. <div class="entry-meta mt-0">
  49. <time datetime="<?php echo get_the_date('c'); ?>" itemprop="datePublished"><i class="bi bi-calendar-date m2-1"></i> <?php echo get_the_date(); ?></time>
  50. </div>
  51. </header>
  52. <div class="front-page-entry-content">
  53. <div class="post-thumbnail">
  54. <?php echo the_post_thumbnail(array(180,180), ['class' => 'p-2 float-end']); ?>
  55. </div>
  56. <?php the_excerpt();?>
  57. </div>
  58. </div>
  59. <?php endforeach;wp_reset_query();?>
  60. </div>
  61. <div class="">
  62. <?php $recentposts = get_posts(array('numberposts'=>5,'offset'=>1)); foreach ($recentposts as $post) : setup_postdata($post); ?>
  63. <li style="color:#777;list-style:none;"><?php echo get_the_date('m/d/y'); ?> - <a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
  64. <?php endforeach; ?>
  65. </div>
  66. </section>
  67. </div>
  68. </div>
  69. </div>
  70. <?php get_footer();?>