| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * The template for displaying all pages
- *
- * This is the template that displays all pages by default.
- * Please note that this is the WordPress construct of pages
- * and that other 'pages' on your WordPress site may use a
- * different template.
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package whitesports
- */
- get_header();
- ?>
- <section class="page-title" style="background-image:url(images/background/1.jpg);">
- <div class="container">
- <div class="title-text">
- <h1>Events</h1>
- </div>
- </div>
- </section>
- <div class='container'>
- <?php
- $posts = get_posts(array('category__in'=> [46], 'post_status' => 'publish' ,'numberposts' => -1));
- ?>
- <?php foreach($posts as $p): ?>
- <div class='row border event-con'>
- <div class="col-md-3">
- <img src="<?= get_the_post_thumbnail_url($p) ?>" style="width:100%">
- </div>
- <div class="col-md-9">
- <h4 class="media-heading"><a href="<?= get_permalink($p) ?>"><?= $p->post_title ?></a></h4>
- <i class="far fa-calendar"></i>
- <?= get_field('start_date', $p) ?>
- <i class="fas fa-map-marker-alt"></i>
- <?php $location = get_field('location', $p) ?>
- <?php //var_dump($location) ?>
- <a href="https://www.google.com/maps/place/?q=place_id:<?= $location['place_id'] ?>" target="_blank">
- <?= $location['name'] ?></a>
- <br><br>
- <p><?= $p->post_excerpt ?></p>
- <a href="<?= get_permalink($p) ?>" class='btn-style-two event-btn'>ดูรายละเอียดเพิ่มเติม</a>
- <a href="" class='btn-style-one event-btn'>ลงทะเบียนกิจกรรม</a>
- </div>
- </div>
- <?php endforeach ?>
- </div>
- <?php
- get_footer();
|