即使传递了正确的id,wp_get_attachment_image_src()也无法正常工作

时间:2014-07-22 10:45:45

标签: php wordpress

$images =& get_posts( array (
                'post_status' => 'private',
                'post_content' => '',
                'post_excerpt' => $revision_message,
                'post_type' => 'document',
));
if ( empty($images) ) {
    // no attachments here
} else {
    foreach ( $images as $attachment_id => $attachment ) { 
    if($attachment->post_author==$author){
    $ids= $attachment->ID;
    $a=wp_get_attachment_image_src($ids,'thumbnail');
    echo $a."--";
    }}
}

$ ids正在打印正确的帖子ID但是当它传递给wp_get_attachment_image_src时,不会返回任何内容。 请帮帮我们我是wordpress开发的新手,我的工作就在线上。请帮忙。

1 个答案:

答案 0 :(得分:1)

您已经说过" $ ids正在打印正确的帖子ID" - 你的意思是正确的附件ID吗? wp_get_attachment_image_src需要附件ID,该ID与帖子ID

不同