• Categories
    • Tutorials
    • Beginners Guide
    • WordPress News
    • WordPress Security
    • Best WordPress Plugins
    • WordPress Themes
    • Product Reviews
    • WP Tips & Tricks
  • Guides
    • Start a Blog
    • Make a Website
    • WordPress Hosting
  • Themes
  • Hosting
    • Kinsta
    • Flywheel
    • WPEngine
    • SiteGround
    • A2 Hosting
  • Coupons
    • WPEngine
    • SiteGround
    • HostGator
    • A2 Hosting
WordPress Tutorials

Back to the future with WordPress transients API

Last Updated on: July 26, 2013 Remi 1 Comment

Back to the future with WordPress transients API

If you use WordPress, you may have heard this word at least once: “transient”.

Good, you already achieved step one. But do you really know what transients are, and to use them?

I this quick post I’m going to explain what transients are and how to use them in your own developments. First of all, and this should be your first reflex, let’s go to the Codex.

First thing to note: transients is an API. And here is how the Codex describes it:

This page contains the technical documentation of the WordPress Transients API, which offers a simple and standardized way of storing cached data in the database temporarily by giving it a custom name and a timeframe after which it will expire and be deleted.

I guess it’s a bit clearer now isn’t it? In other words, the transient API is a perfect way to store your own variables for a limited period of time before they self-destruct. I already talked about transients on my website, explaining how to cache the result of a query using transients, but today we are going to make a more basic use of the API.

I recently did something pretty interesting: as a Codecanyon author I wanted to show on my “About me” page the number of happy clients I have. As Codecanyon is a marketplace, the number of happy clients increase every day, and I can’t update the value manually everyday. So, I decided to use the Envato API (Envato is the company behind many marketplaces such Codecanyon and Themeforest)  to retrieve my sales value, store this value in my database and refresh this value every 12 hours. This is exactly what transients API does.

I’m not going to explain the process to retrieve values from Envato API, so let’s say that the sales number is stored in a $envato_happy_clients variable. Here is what the code would be:


<?php
// Cache timeout in seconds
$CACHE_EXPIRATION = 60*60*12; // 12 hours

// Transient ID & cached data
$transient_id  = 'remi_happy_clients';
$happy_clients = get_transient( $transient_id );

// Is data already in local or new call to API
if ( !$happy_clients ) {

/*
Envato API call to retrieve sales number.
Let's assume the result is $envato_happy_clients
*/

$happy_clients = $envato_happy_clients;

// Set the transient - cache item data
set_transient( $transient_id, $happy_clients, $CACHE_EXPIRATION );

}

echo $happy_clients;
?>

And the result is something like you can see on my “About me” page. So, basically, we define in $CACHE_EXPIRATION the period we want to keep the cached data, we then place the content of the transient in $happy_clients variable and then we check if the value is set. If not we connecte to the Envato API to retrieve fresh information, otherwise we simply echo the happy customers value.

Well, this is it! It’s simple but powerful, and I really encourage you to have a deep look to this API that can do much more!

+ Share
Disclosure

Related Posts

Back to all articles
  • How to Add Social Proof to Your WordPress Website

  • How To Fix ‘Fatal Error Maximum Execution Time Exceeded’ WordPress Error

  • How To Fix ‘Insecure Content’ (Mixed Content) Error In WordPress

Coupons

View more deals
  • 30% OFF

    Social Snap Coupon

    Social Snap is probably one of the best social sharing plugin for
    Get This Deal
  • 20% OFF

    Visual Composer Coupon

    The Visual Composer website builder is all you need to create a b
    Get This Deal
  • wpengine coupon
    30% OFF

    WPEngine Coupon

    If you’re in search of a WordPress hosting company that deliver
    Get This Deal
1 Comment Leave a Reply
  1. Mopra says

    February 1, 2013 at 3:32 pm

    Really cool
    I tried to do something like you but it has increased my Queries (20 to 23 but if I disable my custom query it give me 15 queries)

    Here is my code :

    $exemple = get_transient(‘exemples’);
    if (false === $exemple) {
    $exemple = new WP_Query(‘cat=’.$catss.”);
    set_transient(‘exemples’, $exemple);
    }
    while ($exemple->have_posts()): $exemple->the_post();

    Thanks for your help

    Reply

Leave a Reply Cancel reply

Full Disclosure This post may contain affiliate links, meaning that if you click on one of the links and purchase an item, we may receive a commission (at no additional cost to you). All opinions are our own and we do not accept payments for positive reviews.

Our Newsletter

Get awesome content delivered straight to your inbox.

The Best of WPKube

Some of the best content we have published so far.

Beginner Guides & Reviews

  • 1
    How to Start a Blog (with WordPress)
  • 2
    How to Install WordPress -- The Complete Guide
  • 3
    Best WordPress Plugins: 40 Experts Share Their Favorite Plugins
  • 4
    Best Managed WordPress Hosting Comparison
  • 5
    Top WordPress Landing Page Plugins That Convert
  • 6
    WP Beaver Builder Review: Build WordPress Sites Instantly
  • 7
    OptimizePress Review: Create Landing Pages with Ease

Theme Roundups

  • 1
    Best WordPress Magazine Themes for Bogs & News websites
  • 2
    Best WooCommerce Themes for 2018

Exclusive deals

Flywheel Elegant Themes Coupon WPEngine Coupon SiteGround

WPX Hosting: 50% OFF

Save 50% on WPX Hosting using our exclusive coupon code.

Get this Deal
Featured In Forbes Huffpost Entrepreneur SEJ

About WPKube

WPKube is an online WordPress resource which focuses on WordPress tutorials, How-to’s, guides, plugins, news, and more. We aim to provide the most comprehensive beginner’s guides to anything about WordPress — from installing plugins, themes, automated installs and setups, to creating and setting up pages for your website.

We have over 500+ tutorials, guides, product reviews, tips, and tricks about WordPress. Founded by Devesh Sharma, the main goal of this site is to provide useful information on anything and everything WordPress.

Useful Links

  • Behind the Scenes
  • Beginner Guides
  • WooCommerce Themes
  • MeridianThemes
  • Exclusive WordPress Deals
View All Guides »

Reviews

  • WPEngine 50% OFF
  • Thrive Leads
  • Flywheel 33% OFF
  • Divi Builder 20% OFF
  • SiteGround 60% OFF
  • Elegant Themes
Reviews »

Deals

  • InMotion Hosting
  • SiteGround Coupon
  • MaxCDN Coupon
  • ThemeZilla
  • WPEngine Coupon
More Deals »
© Copyright 2018 WPKube ® All Rights Reserved.
  • About
  • Contact
  • Site Terms
  • Disclosure
  • Privacy Policy