2014-10-05 03:23:42 +03:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Template Name: Sponsors
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
<section class="content">
|
2014-10-07 14:52:34 +03:00
|
|
|
<h1><?php the_title(); ?></h1>
|
|
|
|
<div class="separator"></div>
|
2014-10-05 03:23:42 +03:00
|
|
|
<?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' );
|
|
|
|
$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
|
|
|
|
if ( has_post_thumbnail() ) {
|
2014-10-14 15:06:43 +03:00
|
|
|
the_post_thumbnail(array(100, 100));
|
2014-10-05 03:23:42 +03:00
|
|
|
} else {
|
|
|
|
the_title();
|
|
|
|
}
|
|
|
|
|
2014-10-07 14:52:34 +03:00
|
|
|
the_excerpt();
|
2014-10-05 03:23:42 +03:00
|
|
|
?>
|
|
|
|
</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(); ?>
|