今天我一直在尝试使用以下代码在 wordpress 中显示最受欢迎的帖子:
它工作得很好,但它不允许我抓取帖子上的第一个附加图像。我需要这样做才能从保存图像的几个自定义字段中的任何一个中获取图像。
我尝试使用以下代码(实际上适用于另一个自定义)来获取帖子上的第一个附加图像,但我无法使其工作。
$p = array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'numberposts' => 1,
'order' => 'ASC',
'orderby' => 'menu_order ID',
'post_status' => null,
'post_parent' => $post->ID
);
$thumb = get_posts($p);
if ($thumb) {
$imgsrc = wp_get_attachment_image_src($thumb[0]->ID, 'thumbnail');
$img = $imgsrc[0];
}
有什么办法可以实现吗??