我想通过json链接更新我的帖子,我已经通过这个链接获得了所有的帖子数据。http://xyz/wp-json/custom/v1/all-posts. 如何设置cron作业进行自动更新。
w8biq8rn1#
$slices = json_decode(file_get_contents('http://27.109.19.234/decoraidnew/wp-json/custom/v1/all-posts'),true); if ($slices) { foreach ($slices as $slice) { $title = $slice[1]; } } $my_post = array( 'post_title' => $title, 'post_content' => 'This is my content', 'post_status' => 'publish', 'post_author' => 1, 'post_category' => array(8,39) ); $post_id = wp_insert_post( $my_post, $wp_error );
1条答案
按热度按时间w8biq8rn1#