- Desde
- 4 Jun 2011
- Mensajes
- 1.401
Hola, estoy intentando seguir este tutorial de WordPress para mostrar algunas imágenes de Instagram en un blog: Tutorial WP paso a paso: crear un widget con tus últimas fotos de Instagram, con cache y sin plugins | HacheMuda
Pero a la hora de copiar el código del paso 3, me da error y me deja el blog y el admin con una pantalla totalmente en blanco. Hay algún error en el código? Lo copio aquí para mayor comodidad:
Saludos.
Pero a la hora de copiar el código del paso 3, me da error y me deja el blog y el admin con una pantalla totalmente en blanco. Hay algún error en el código? Lo copio aquí para mayor comodidad:
PHP:
/****** GET THE LAST INSTAGRAM PHOTOS WITH CACHE *******/
/*
Replace "XXXXX" with the Instagram user ID and "ZZZZZ" with the Instagram Dev-App access token
*/
function get_user_instagram_photos($user_id=XXXXX, $count=6, $width=180, $height=180){
$result = get_transient('last_instagrams');
if ($result == false){
$url = 'https://api.instagram.com/v1/users/'.$user_id.'/media/recent/?access_token=ZZZZZ&count='.$count;
$jsonData = json_decode((file_get_contents($url)));
$result = '';
foreach ($jsonData->data as $key=>$value) {
$result .= '\t'.'<a title="'.htmlentities($value->caption->text).' ('.htmlentities(date("d/m/Y", $value->caption->created_time)).')" href="'.$value->images->standard_resolution->url.'">';
$result .= '<img src="'.$value->images->low_resolution->url.'" alt="'.$value->caption->text.'" width="'.$width.'" height="'.$height.'" />';
$result .= '</a>';
}
set_transient('last_instagrams', $result, 60*60*24);
update_option('last_instagrams', $result);
}
return $result;
}
Saludos.