在wordpress中使用wp_get_attachment_image()的正确方法

时间:2010-06-22 01:27:31

标签: php wordpress wordpress-theming

我正在寻找使用wp_get_attachment_image()的正确方法。

以下代码:

<?php
    $args = array(
        'type' => 'attachment',
        'category_name' => 'portfolio'
        );
    $attachments = get_posts($args);
    print_r($attachments);
?>

生成以下结果:

Array
(
    [0] => stdClass Object
        (
            [ID] => 54
            [post_author] => 1
            [post_date] => 2010-06-22 00:32:46
            [post_date_gmt] => 2010-06-22 00:32:46
            [post_content] => <a href="http://localhost/wordpress/wp-content/uploads/2010/06/Capture.jpg"><img class="alignnone size-medium wp-image-55" title="Capture" src="http://localhost/wordpress/wp-content/uploads/2010/06/Capture-300x114.jpg" alt="" width="300" height="114" /></a> 
            [post_title] => Our Own Site
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => open
            [ping_status] => open
            [post_password] => 
            [post_name] => our-own-site
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2010-06-22 00:40:22
            [post_modified_gmt] => 2010-06-22 00:40:22
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => http://localhost/wordpress/?p=54
            [menu_order] => 0
            [post_type] => post
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )
)

然而,以下内容并未返回任何内容。

<?php
    echo wp_get_attachment_image(54, array('300', '300'));
?>

我在这里做错了什么?

3 个答案:

答案 0 :(得分:6)

实际上,我认为接受的答案并没有真正回答这个问题。

您的问题是,您将帖子ID (在您的示例中为54;通常在WP用语中$post->ID)传递给wp_get_attachment_image()。从codex中可以看出,您应该使用附件ID (请参阅下面的$attachment_id):

wp_get_attachment_image( $attachment_id, $size, $icon );

换句话说,你必须做这样的事情:

$image_attr = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'medium');

答案 1 :(得分:1)

函数wp_get_attachment_image只获取上传到wordpress的图片,它不会在帖子的内容中输出图像。

您必须输出示例图片的帖子内容。

赞:echo $attachments['post_content'];

答案 2 :(得分:1)

wp_get_attachment_image函数可以接受四个值,如您所见:

wp_get_attachment_image ( int $attachment_id, string|array $size = 'thumbnail', bool $icon = false, string|array $attr = '' )

所以我总是使用:

<?php echo wp_get_attachment_image( get_the_ID(), array('700', '600'), "", array( "class" => "img-responsive" ) );  ?>

注意:我们只需使用 get_the_ID()即可传递活动帖子的ID。这里 700是宽度 600是附件图像的高度。我们也可以将我们的课程作为数组(“class”=&gt;“img-responsive”)传递