gpt4 book ai didi

wordpress - 显示要在 Wordpress 上发布的附加图像

转载 作者:行者123 更新时间:2023-12-04 16:41:46 25 4
gpt4 key购买 nike

如何在 Wordpress 上显示我帖子的附加图片?

最佳答案

在你的 single.php 模板中试试这个:

$args = array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'post_parent' => $post->ID
);
$images = get_posts( $args );
foreach($images as $image):
echo wp_get_attachment_image($image->ID, 'medium');
endforeach;

关于wordpress - 显示要在 Wordpress 上发布的附加图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1815158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com