Skip to content

Instantly share code, notes, and snippets.

@JPry
Last active September 14, 2020 09:26
Show Gist options
  • Save JPry/3a1be32459018b030c7f to your computer and use it in GitHub Desktop.
Save JPry/3a1be32459018b030c7f to your computer and use it in GitHub Desktop.
<?php
global $wpdb;
$results = get_transient( 'laurens_random_posts' );
if ( false === $results ) {
$results = $wpdb->get_results( "SELECT * FROM {$wpdb->posts} ORDER BY RAND()" );
set_transient( 'laurens_random_posts', $results, WEEK_IN_SECONDS );
}
foreach ( $results as $result ) {
// do stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment