2016-10-18 4 views
2

특정 사용자에 대한 인스 트램 사진을 가져 오기 위해 다음 PHP 파일을 만들었습니다. 누구든지 내 사진을 미디어 라이브러리에 추가 할 수있는 방법에 대해 올바른 방향으로 알려줄 수 있습니까?Instagram에서 미디어 라이브러리 wordpress에 사진 추가

<?php 
/** 
* Template Name: Cronjob 
*/ 

    function fetchData($url){ 
     $ch = curl_init(); 
     curl_setopt($ch, CURLOPT_URL, $url); 
     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
     curl_setopt($ch, CURLOPT_TIMEOUT, 20); 
     $result = curl_exec($ch); 
     curl_close($ch); 
     return $result; 
    } 

    $result = fetchData("https://api.instagram.com/v1/users/******/media/recent/?access_token=*************&count=5"); 
    $result = json_decode($result); 
    foreach ($result->data as $post) { 

    $new_post = wp_insert_post(array(
     'post_content' => '<a href="'. esc_url($post->link) .'" target="_blank"><img src="'. esc_url($post->images->standard_resolution->url) .'" alt="'. $post->caption->text .'" /></a>', 
     'post_name'  => $post->id, 
     'post_type' => 'instagram' 
    ), true); 
    } 
?> 

답변

관련 문제