Skip to content

Instantly share code, notes, and snippets.

@klhall1987
Created October 29, 2015 18:25
Show Gist options
  • Select an option

  • Save klhall1987/17b9bd77400895be459d to your computer and use it in GitHub Desktop.

Select an option

Save klhall1987/17b9bd77400895be459d to your computer and use it in GitHub Desktop.
Getting Transient
<?php
//Set transient that will be cached for one hour.
set_transient('my_cached_data' , $my_object , 60*60);
get_transient( 'my_cached_data' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment