Created
May 2, 2012 23:07
-
-
Save warmwaffles/2581372 to your computer and use it in GitHub Desktop.
Doing a vimeo transient in PHP
This file contains 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 | |
# | |
# ... Other WP functions | |
# | |
function vimeo_transient_title($post) { | |
if( false === ($value = get_transient('vimeo_title_' . $post->ID) )) { | |
$vid_meta = get_post_meta($post->ID,'cmb_vimeo_id_field',true); | |
$url = 'http://vimeo.com/api/v2/video/' . $vid_meta . '.php'; | |
$response = wp_remote_get( $url, array( 'timeout' => 15 ) ); | |
if ( !is_wp_error( $response ) ) { | |
$data = wp_remote_retrieve_body( $response ); | |
} | |
set_transient( 'vimeo_title_' . $post->ID, $data, 60*60*1 ); | |
$info = unserialize(trim($data)); | |
} else { | |
$info = unserialize(trim($value)); | |
} | |
# Change this if you need something else out of the array | |
return $info[0][title]; | |
} | |
# Example call | |
# echo vimeo_transient($wp_query->post); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
basically if you wanted the vimeo transient title you would call that function above. If you need some other value, you can duplicate the function or break this down even further with more parameters.