-
Notifications
You must be signed in to change notification settings - Fork 10
/
page-sponsors.php
61 lines (54 loc) · 1.38 KB
/
page-sponsors.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
<?php
/*
Template Name: Sponsors
*/
get_header(); ?>
<section class="content">
<h1><?php the_title(); ?></h1>
<div class="separator"></div>
<?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile; endif;
?>
</section>
<div class="separator"></div>
<section class="content grid sponsors-item">
<?php
$sponsors_args = array( 'post_type' => 'sponsors', 'orderby' => 'rand', 'nopaging' => 'true' );
$sponsors = new WP_Query( $sponsors_args );
$sponsor_count = 0;
if ( $sponsors->have_posts() ) :
while ( $sponsors->have_posts() ) : $sponsors->the_post();
?>
<div class="col2 tac">
<?php
$custom = get_post_custom();
if (!empty ($custom['url'])) {
echo '<a href="'.$custom['url'][0].'" target=_blank alt="'.get_the_title().'">';
}
if ( has_post_thumbnail() ) {
the_post_thumbnail();
} else {
the_title();
}
if (!empty ($custom['url'])) {
echo '</a>';
}
the_excerpt();
?>
</div>
<?php
$sponsor_count++;
if ($sponsor_count % 2 == 0) {
?>
</section>
<section class="content grid sponsors-item">
<?php
}
endwhile;
wp_reset_postdata();
endif;
?>
</section>
<?php get_footer(); ?>