0

我正在使用此代码段来显示帖子的所有图像:

<?php
$argsThumb = array(
    'order'          => 'ASC',
    'post_type'      => 'attachment',
    'post_parent'    => $post->ID,
    'post_mime_type' => 'image',
    'post_status'    => null
);
$attachments = get_posts($argsThumb);
if ($attachments) {
    foreach ($attachments as $attachment) {
        //echo apply_filters('the_title', $attachment->post_title);
                echo '<img src="'.wp_get_attachment_url($attachment->ID, 'testsize', false, false).'" />';
    }
}
?>

这段代码用于创建自定义缩略图大小

add_image_size( 'testsize', 400, 400, true );

不幸的是,它不会输出 400px X 400px 的图像,尺寸只是原始尺寸。(注意:我重新生成了缩略图并在帖子中添加了新图像,但它仍然不起作用)。

4

1 回答 1

0

这是答案: wp_get_attachment_url() 不接受参数。使用 wp_get_attachment_image() 代替工作。

<?php
$argsThumb = array(
    'order'          => 'ASC',
    'post_type'      => 'attachment',
    'post_parent'    => $post->ID,
    'post_mime_type' => 'image',
    'post_status'    => null
);
$attachments = get_posts($argsThumb);
if ($attachments) {
    foreach ($attachments as $attachment) {
        //echo apply_filters('the_title', $attachment->post_title);
        echo '<img src="'.wp_get_attachment_image($attachment->ID, 'testsize').'" />';
    }
}
?>
于 2012-12-17T07:20:51.857 回答