Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active April 15, 2024 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vanaf1979/b6237218021cf10060f5d3e4e4ae81f6 to your computer and use it in GitHub Desktop.
Save vanaf1979/b6237218021cf10060f5d3e4e4ae81f6 to your computer and use it in GitHub Desktop.
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