我想在侧边栏显示最新的帖子标题和缩略图。到目前为止,我得到的帖子标题和只有一个缩略图重复。你可以在这里看到结果。(只显示第一个/最旧的帖子图像)
这是我的代码:
$rps = wp_get_recent_posts($params);
foreach($rps as $rp) :
$args = array(
'post_type' => 'attachment',
'numberposts' => 1,
'post_status' => null,
'post_parent' => $post->ID
);
$attachment = current(get_posts( $args ));
?>
<a href="<?php echo get_permalink($rp['ID']);?>"><?php echo $rp['post_title'];?><?php echo wp_get_attachment_image( $attachment->ID, 'thumbnail' );?></a>
<?php endforeach; ?>
感谢您提供的任何提示/帮助。