Skip to content

Instantly share code, notes, and snippets.

@szbl
Last active December 21, 2015 23:48
Show Gist options
  • Save szbl/6384352 to your computer and use it in GitHub Desktop.
Save szbl/6384352 to your computer and use it in GitHub Desktop.
So Drew doesn't judge me for my dating choices.
<div id="trends">
<?php
$trends_posts = get_posts(array(
'tag_slug__in' => array( 'trends' ),
'posts_per_page' => 1
));
if ( count( $trends_posts ) == 1 ) :
$org_post = $GLOBALS['post'];
$GLOBALS['post'] = $trends_posts[0];
setup_postdata( $GLOBALS['post'] );
?>
<h3><?php the_title(); ?></h3>
<div class="excerpt">
<?php the_excerpt(); ?>
</div>
<?php
$GLOBALS['post'] = $org_post;
setup_postdata( $GLOBALS['post'] );
endif;
?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment