-
Notifications
You must be signed in to change notification settings - Fork 0
/
home-page.php
95 lines (68 loc) · 1.92 KB
/
home-page.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/*
Template Name: Home
*/
get_header(); ?>
<div class="home-banner-container">
<div class="home-banner">
<div class="welcome">
<h1><?php the_field('banner_title'); ?></h1>
<p><?php the_field('banner_copy'); ?></p>
</div>
<img src="<?php the_field('banner_image'); ?>" />
</div>
</div>
</div>
<div class="wrapper">
<div class="recent-updates">
<h1>Recent Updates</h1>
<?php
$args = array(
'post_type' => array ('projects', 'plansreports', 'minutes' ),
'tax_query' => array(
array(
'taxonomy' => 'featured',
'field' => 'slug',
'terms' => 'yes'
)
),
'posts_per_page' => 2
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class="update">
<div class="update-more">
<?php if ( 'projects' == get_post_type() ) { ?>
<h3><?php echo get_the_date('n-j-Y'); ?></h3>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<h4><a href="/?page_id=10">More Projects ></a></h4>
<?php } ?>
<?php if ( 'plansreports' == get_post_type() ) { ?>
<h3><?php echo get_the_date('n-j-Y'); ?></h3>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<h4><a href="/?page_id=12">More Plans & Reports ></a></h4>
<?php } ?>
<?php if ( 'minutes' == get_post_type() ) { ?>
<h3><?php echo get_the_date('n-j-Y'); ?></h3>
<h2><a href="/?page_id=14">New Meeting Posted</a></h2>
<h4><a href="/?page_id=14">More Minutes ></a></h4>
<?php } ?>
</div><!-- update-more -->
</div><!-- update -->
<?php endwhile; ?>
</div><!-- recent-updates -->
</div><!-- wrapper -->
<div class="home-bottom">
<?php while ( have_posts() ) : the_post(); ?>
<div class="wrapper">
<div class="home-bottom-left">
<?php the_field('about_modoc_county'); ?>
</div>
<div class="home-bottom-right">
<img class="sage-stage-logo" src="<?php the_field('sage_stage_logo'); ?>" />
<?php the_field('about_sage_stage'); ?>
</div>
<?php endwhile; ?>
</div>
</div><!-- wrapper -->
<?php get_footer(); ?>