【发布时间】:2014-06-06 04:58:21
【问题描述】:
我需要一些帮助来修改此代码 (source):
<?php
$args = array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'numberposts' => 4,
'post_status' => null,
'post_parent' => any, // any parent
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $post) {
setup_postdata($post);
the_attachment_link($post->ID, false);
}
}
?>
现在,它正在从我的 WP 安装中查询所有图像附件,并将最新的 4 个图像附件显示为它们的缩略图版本。我的问题是the_attachment_link 只允许它链接到全尺寸图像或图像的附件页面。我希望它链接到帖子(并且我可以保证每张图片仅附加到 1 个帖子,如果这是一个问题/担忧)。
我尝试过使用其他函数,例如 wp_get_attachment_image 和 wp_get_attachment_link,但它们最终什么也没有显示(也没有错误)。有什么帮助吗?
【问题讨论】:
标签: php wordpress image function attachment