我花了将近一周的时间寻找这样的解决方案,但没有成功。我想要实现的是在我的wordpress主页上有一种“照片云”。我需要做的是显示添加到媒体库中的最新12张照片(所以不是从特定帖子中,而是从一般情况下)。拇指应该呈正方形-3列,4行(当然这部分我可以通过css获得)。我不知道怎么做。。
我发现了这样一段代码:
$args = array(
\'post_type\' => \'attachment\',
\'post_status\' => \'published\',
\'posts_per_page\' =>25,
\'post_parent\' => 210, // Post-> ID;
\'numberposts\' => null,
);
$attachments = get_posts($args);
$post_count = count ($attachments);
if ($attachments) {
foreach ($attachments as $attachment) {
echo "<div class=\\"post photo col3\\">";
$url = get_attachment_link($attachment->ID);// extraigo la _posturl del attachmnet
$img = wp_get_attachment_url($attachment->ID);
$title = get_the_title($attachment->post_parent);//extraigo titulo
echo \'<a href="\'.$url.\'"><img title="\'.$title.\'" src="\'.get_bloginfo(\'template_url\').\'/timthumb.php?src=\'.$img.\'&w=350&h=500&zc=3"></a>\';
echo "</div>";
}
}
但我不知道如何完成它——不指向具体的帖子。有什么想法吗?:)谢谢你!