WordPress - 从帖子到图像循环

Adr*_*scu 3 wordpress

我制作了一个 WordPress 主题,包含页面和帖子。帖子循环向我显示了帖子的简短摘要和继续阅读链接。我喜欢这个,但是如何使主题显示在帖子开头附加的循环图像的帖子摘要中(如果有的话)。

谢谢你!

ari*_*ayu 6

您可以使用以下方式获取附加图像:

$args = array(
    'post_type' => 'attachment',
    'post_mime_type' => 'image',
    'numberposts' => 1,
    'orderby' => 'menu_order',
    'order' => 'ASC',
    'post_parent' => $post->ID
);
$images = get_posts($args);
Run Code Online (Sandbox Code Playgroud)

并像这样显示它:

echo wp_get_attachment_image($images[0]->ID, $size='attached-image');
Run Code Online (Sandbox Code Playgroud)