标签: image wordpress post thumbnails web-crawler
我将从XML文件中抓取一些数据,并且我拥有所需的所有信息,包括图像URL。
Wordpress中有一个名为wp_insert_post的函数,用于以编程方式创建帖子。到现在为止还挺好。使用简单:
http://codex.wordpress.org/Function_Reference/wp_insert_post
我还需要:
答案 0 :(得分:2)
您可以使用此功能。
media_sideload_image($url,$post_id,$description);
有关此here.
在主题中,您可以使用此功能获取所需大小的拇指
<?php echo get_the_post_thumbnail( $id, $size, $attr ); ?>
Read more at codex
默认缩略图尺寸也可以更改see this。