Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Created May 15, 2014 15:06
Show Gist options
  • Save tomharrigan/cc56852be0f31ad32925 to your computer and use it in GitHub Desktop.
Save tomharrigan/cc56852be0f31ad32925 to your computer and use it in GitHub Desktop.
$slides = get_transient( 'home_slides_test' );
if( false === $slides ) {
$slides = new WP_Query(array(
'meta_query' => array(
array(
'key' => '_tdrfeatured',
'value' => 'on',
'compare' => '='
)
),
'meta_key' => '_tdrorder',
'posts_per_page' => 10,
'orderby' => 'meta_value',
'order' => 'ASC'
));
set_transient( 'home_slides_test', $slides, HOUR_IN_SECONDS );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment