[php] if ( has_post_thumbnail() ) { [/php]
[php] } [/php]
[php] the_title(); [/php]
[php] the_excerpt(); [/php]
[php] if ( has_post_thumbnail() ) { echo ”
“; } [/php]
[REMIX]
Campus Dining is offering discounted dining rates for faculty/staff during Homecoming week. Visit any of the three dining centers to enjoy all you-care-to-eat style dining at lunch for $5.50 or dinner for $7.50. Faculty/Staff must show their ID to receive the discounted rate. Dinner price begins at 4:30 p.m.
All events
[php] $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
$post_per_page = 10; // -1 shows all posts
$args = array(
‘cat’ => 5,
‘year’ => 2012,
‘monthnum’ => 3,
‘posts_per_page’ => $post_per_page,
‘paged’ => $paged,
‘orderby’ => ‘date’,
‘order’ => ‘ASC’
);
query_posts( $args );
$wp_query = new WP_Query($args);
if( $wp_query->have_posts() )
{
while ($wp_query->have_posts())
{
$wp_query->the_post(); [/php]
[php] if ( has_post_thumbnail() ) { [/php]
[php] } [/php]
[php] the_excerpt(); [/php]
[php] if ( has_post_thumbnail() ) { echo ”
“; } [/php]
[php] } } [/php]
[/REMIX]