本文整理汇总了PHP中Jetpack_PostImages::from_attachment方法的典型用法代码示例。如果您正苦于以下问题:PHP Jetpack_PostImages::from_attachment方法的具体用法?PHP Jetpack_PostImages::from_attachment怎么用?PHP Jetpack_PostImages::from_attachment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Jetpack_PostImages
的用法示例。
在下文中一共展示了Jetpack_PostImages::from_attachment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_from_attachment_is_correct_array
/**
* @author scotchfield
* @covers Jetpack_PostImages::from_attachment
* @since 3.2
*/
public function test_from_attachment_is_correct_array()
{
$img_name = 'image.jpg';
$img_url = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/' . $img_name;
$img_html = '<img src="' . $img_url . '"/>';
$img_dimensions = array('width' => 250, 'height' => 250);
$post_id = $this->factory->post->create(array('post_content' => $img_html));
$attachment_id = $this->factory->attachment->create_object($img_name, $post_id, array('post_mime_type' => 'image/jpeg', 'post_type' => 'attachment'));
wp_update_attachment_metadata($attachment_id, $img_dimensions);
$images = Jetpack_PostImages::from_attachment($post_id);
$this->assertEquals(count($images), 1);
$this->assertEquals($images[0]['src'], $img_url);
}