-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive-program.php
51 lines (41 loc) · 1.32 KB
/
archive-program.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php get_header(); ?>
<div class="page-banner">
<div class="page-banner__bg-image" style="background-image: url('<?php echo get_theme_file_uri('/images/ocean.jpg'); ?>');"></div>
<div class="page-banner__content container container--narrow">
<h1 class="page-banner__title">All Programms
</h1>
<div class="page-banner__intro">
<p>Check Our All Programms Here</p>
</div>
</div>
</div>
<div class="container container--narrow page-section">
<ul class="link-list min-list">
<?php
// $today = date('Ymd');
// $home_page_events = new WP_Query(array(
// 'posts_per_page' => -1,
// 'post_type' =>'event',
// 'meta_key' => 'event_date',
// 'orderby' => 'meta_value_num',
// 'order' => 'ASC',
// 'meta_query' => array(
// array(
// 'key' => 'event_date',
// 'compare' => '>=',
// 'value' => $today,
// 'type' => 'numeric'
// )
// )
// ));
while(have_posts( )){
the_post( ); ?>
<li>
<a href="<?php the_permalink() ?>"><?php the_title( )?></a>
</li>
<?php
}
?>
</ul>
</div>
<?php get_footer(); ?>