将Instagram照片导入为WordPress帖子

时间:2015-07-24 20:42:10

标签: php wordpress instagram

我使用此插件,在此处列出:http://mlitzinger.com/articles/instagram-to-wordpress-posts/

我已经安装了Crontrol插件,但我只设法导入一个帖子进行一次导入。 Instagram数据正在正确返回,因此我假设它与插入后的内容有关。这是用于插入获取的Instagram帖子的数据:

$json_feed = file_get_contents($url, false, $args);
$json_feed = json_decode($json_feed);

foreach($json_feed->data as $post):
    if(!slug_exists($post->id)):
        $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_date'     => date("Y-m-d H:i:s", $post->created_time),
            'post_date_gmt' => date("Y-m-d H:i:s", $post->created_time),
            'post_status'   => 'publish',
            'post_title'    => $post->id,
            'post_name'     => $post->id,
            'post_category' => array(7)
        ), true);
    endif;
endforeach;

function slug_exists($post_name){
    global $wpdb;
    if($wpdb->get_row("SELECT post_name FROM wp_posts WHERE post_name = '" . $post_name . "'", 'ARRAY_A')):
        return true;
    else:
        return false;
    endif;
}

1 个答案:

答案 0 :(得分:0)

我决定只使用https://ifttt.com/,因为它包括Wordpress和Instagram,而不是尝试创建我自己的插件,而每次Instagram更新都需要维护。它会收听Instagram帖子,然后在Wordpress中插入一个帖子,其中包含我定义的格式。