Wordpress - 带有调整后缩略图的wp_insert_post

时间:2011-03-21 12:29:48

标签: image wordpress post thumbnails web-crawler

我将从XML文件中抓取一些数据,并且我拥有所需的所有信息,包括图像URL。

Wordpress中有一个名为wp_insert_post的函数,用于以编程方式创建帖子。到现在为止还挺好。使用简单:

http://codex.wordpress.org/Function_Reference/wp_insert_post

我还需要:

  • 通过图片网址(例如http://www.test.com/my-image.jpg
  • 添加附加到帖子缩略图的图片
  • 使用Wordpress内置功能在上传时调整大小(例如,最大300 x 300,如中等缩略图设置

1 个答案:

答案 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

相关问题