此代码“the_user_favorites_list($ user_id,$ site_id,$ include_links,$ filters,$ include_button);”显示帖子标题。如何获得帖子缩略图?
答案 0 :(得分:0)
get_user_favorites()只返回数组中的post id。如果您将这些ID传递给get_the_post_thumbnail(),您将获得使用图像缩略图作为其src属性的图像标记的html。例如:
$array_of_post_ids = get_user_favorites($user_id, $site_id, $include_links, $filters, $include_button);
foreach ($array_of_post_ids as $post_id){
echo '<div class="post-thumbnail-' . $post_id .'">;
echo get_the_post_thumbnail($post_id);
echo '</div>';
}