-
-
Save dexit/4c71c6b0d05f6a4796368a0bd6020728 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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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