anatol06
5/6/2018 - 4:19 PM

wp-featured-query-with-float

Get a featured query with each even post floated Right

<?php 
    $i = 0; // Counter
?>

<?php $featured_query = new WP_query(array(
    'category_name' => 'featured' )); ?>

    <?php while ($featured_query->have_posts()) :
        $featured_query->the_post(); ?>

        <?php 
            $i++;  

            if ($i % 2 != 0) {
                $float = 'no-float';
            } else {
                $float = 'float-right';
            }
        ?>
    
    	<!-- HTML Code Here-->
    	
    <?php endwhile; ?>