This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Adds Radio Latest News Widget. | |
* | |
* @package Radio | |
* @package Widgets | |
* @author Greg Rickaby and StudioPress | |
* @license http://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later) | |
* @link http://www.studiopress.com/themes/genesis | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Adds Radio Latest News Widget. | |
* | |
* @package Radio | |
* @package Widgets | |
* @author Greg Rickaby and StudioPress | |
* @license http://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later) | |
* @link http://www.studiopress.com/themes/genesis | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$post_classes = get_post_class(); | |
$odd_or_even = 'even'; | |
$post_counter = 0; | |
$post_counter++; | |
$odd_or_even = ( 'odd' == $odd_or_even ) ? 'even' : 'odd'; | |
$post_classes[] = ( $post_counter == count( $posts ) ) ? 'last-post' :$odd_or_even; | |
echo '<div class="' . implode( ' ', $post_classes ) . '">'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$odd_or_even = 'even'; | |
$loop_2 = new WP_Query( 'cat=1&showposts=2&orderby=date&order=DESC' ); while ($loop_2->have_posts()) : $loop_2->the_post(); ?> | |
<div <?php post_class( $odd_or_even ); ?>> | |
<?php $odd_or_even = ( 'odd' == $odd_or_even ) ? 'even' : 'odd'; ?> | |
<div class="column-5 left"> | |
<a href="<?php the_permalink(); ?>" /><?php the_post_thumbnail( 'thumbnail', array( 'class' => 'featured-image' ) ); ?></a> | |
<a href="<?php the_permalink(); ?>" /><span class="read-more">Read More</span></a> |
NewerOlder