Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active March 4, 2020 15:01
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Snippet #008 Using transients to cache data. https://since1979.dev/snippet-008-using-transients-to-cache-data/
<?php
$posts = maybeCache('remote_posts_data', 7200, function () {
return do_remote_get('https://jsonplaceholder.typicode.com/posts/');
});
foreach ($posts as $post) {
echo "<h2>{$post->title}</h2>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment