-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
226 lines (185 loc) · 6.45 KB
/
index.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<?php
/*
* main page
*/
include('includes/php/ufc-api.php');
get_header();
?>
<section id="splash">
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="header">
UFC
</div>
</div>
</div>
</div>
</section>
<?php $events = UfcAPI::getAllEvents() ?>
<?php date_default_timezone_set('America/Los_Angeles'); ?>
<?php $thedate = date('Y-m-d'); ?>
<section id="s__events">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Upcoming Events</h2>
<div class="row event-list">
<?php $today = date('Y-m-d'); ?>
<?php $args = array(
'post_type' => 'post',
'meta_query' => array (
array(
'key' => 'event_start_date',
'compare' => '>=',
'value' => $today,
)
),
);
?>
<?php $the_query = new WP_Query( $args ); ?>
<?php if ( $the_query->have_posts() ) : ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php $event_id = get_the_title(); ?>
<?php foreach($events as $obj): ?>
<?php if ($obj->id == $event_id): ?>
<?php // calculations to see if event is 'live' or aka the current time is less than or equal to 3 hours from start ?>
<?php $ue_event_time = $obj->event_time_text ?>
<?php $ue_event_time = explode('/', $ue_event_time); ?>
<?php $ue_event_start_time = date('H', strtotime($ue_event_time[1])); ?>
<?php if (($thedate == get_field('event_start_date') && date('H') < $ue_event_start_time) || $thedate != get_field('event_start_date')) : ?>
<div class="col-md-4 events__item">
<a href="<?php echo get_the_permalink(); ?>">
<div class="col-sm-12 events__thumbnail-image" style="background-image:url('<?php echo $obj->feature_image ?>'); background-color: rgba(0,0,0,0.5);">
<div class="events__title-wrap">
<div class="events__title">
<?php the_field('event_title'); ?>
</div>
</div>
</div>
<div class="col-sm-12 events__date-wrap">
<div class="events__tagline">
<?php echo $obj->title_tag_line ?>
</div>
<div class="events__date">
<?php echo date('F j, Y', strtotime(get_field('event_start_date'))); ?>
</div>
</div>
</a>
</div>
<?php endif; ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endwhile; ?>
<?php else : ?>
<div class="col-md-12 events__no-event">
No upcoming events.
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
</section>
<section id="s__results">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Results</h2>
<div class="row event-list">
<?php wp_reset_query(); ?>
<?php wp_reset_postdata(); ?>
<?php $args_results = array(
'post_type' => 'post',
'posts_per_page' => '3',
'meta_query' => array (
array(
'key' => 'event_start_date',
'compare' => '<=',
'value' => $thedate,
)
),
);
?>
<?php $the_results_query = new WP_Query( $args_results ); ?>
<?php if ( $the_results_query->have_posts() ) : ?>
<?php while ( $the_results_query->have_posts() ) : $the_results_query->the_post(); ?>
<?php $event_id = get_the_title(); ?>
<?php foreach($events as $obj): ?>
<?php if ($obj->id == $event_id): ?>
<div class="col-md-4 events__item">
<a href="<?php echo get_the_permalink(); ?>">
<div class="col-sm-12 events__thumbnail-image" style="background-image:url('<?php echo $obj->feature_image ?>'); background-color: rgba(0,0,0,0.5);">
<div class="events__title-wrap">
<div class="events__title">
<?php the_field('event_title'); ?>
</div>
</div>
</div>
<?php // calculations to see if event is 'live' or aka the current time is less than or equal to 3 hours from start ?>
<?php $r_event_time = $obj->event_time_text ?>
<?php $r_event_time = explode('/', $r_event_time); ?>
<?php $r_event_start_time = date('H', strtotime($r_event_time[1])); ?>
<?php $r_event_end_time = date('H', strtotime('+2 hours', strtotime($r_event_time[1]))); ?>
<?php if (($thedate == get_field('event_start_date')) && date('H') >= $r_event_start_time && date('H') <= $r_event_end_time) : ?>
<div class="col-sm-12 results__live">
Live
</div>
<?php endif; ?>
<div class="col-sm-12 events__date-wrap">
<div class="events__tagline">
<?php echo $obj->title_tag_line ?>
</div>
<div class="events__date">
<?php echo date('F j, Y', strtotime(get_field('event_start_date'))); ?>
</div>
</div>
</a>
</div>
<?php endif; ?>
<?php endforeach; ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
</section>
<section id="news-events">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>News</h2>
<?php $news = UfcAPI::getNewsArticles(); ?>
<?php // most recent 5 news articles ?>
<?php $articles = array_slice($news, 0, 6); ?>
<div class="row">
<?php $article_count = 0; ?>
<?php foreach ($articles as $article): ?>
<?php $article_count++; ?>
<?php if ($article_count % 2 == 1): ?>
<div class="row">
<?php endif; ?>
<div class="col-md-6 news__item">
<?php $url = $article->thumbnail; ?>
<?php if ($article->thumbnail != '') : ?>
<?php $url = preg_replace('/\?.*/', '', $url); ?>
<?php else: ?>
<?php $url = get_template_directory_uri().'/includes/img/cage-dark.jpg'; ?>
<?php endif; ?>
<div class="col-sm-12 news__thumbnail-image" style="background-image:url('<?php echo $url ?>');">
</div>
<div class="col-sm-12 news__news-title">
<a href="http://ufc.com/news/<?php echo $article->url_name ?>"><?php echo $article->title ?></a>
</div>
</div>
<?php if ($article_count % 2 == 0) : ?>
</div>
<?php endif; ?>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>