0

我想创建一个自定义页面,该页面将显示 20 个最新的画廊/页面 - 但只有画廊中的第一张图片,而不是全部。像这样的东西:http ://www.autoblog.it/gallerie/

我已经这样做了:

<?php
 $args = array(
'post_type' => 'attachment',
'posts_per_page' => 10,
'post_parent' => $postid,
'numberposts' => 1,
'paged' => $paged,
);
 $attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $attachment) {
echo the_attachment_link($attachment->ID, false, false, true )
echo get_the_title();   }
}?>

它有效,但它的作用是显示最新的 10 个图像,而不是最新的 10 个画廊,所以每个画廊的第一张图像。

请帮忙

谢谢

4

2 回答 2

2
  1. 创建画廊页面
  2. 检索所有附加了画廊的帖子(例如将它们添加到画廊类别)
  3. 在页面中,只需检索图库类别中的所有帖子:

    $args = array(
    'category_name' => 'gallery'
    );
    
    $q = new WP_Query($args);
    while ($q->have_posts()) : $q->the_post();
      $iPostID = $post->ID;
      $arrImages =& get_children('post_type=attachment&post_mime_type=image&post_parent=' . $iPostID );
      if($arrImages) {
        $arrKeys = array_keys($arrImages);
        $iNum = $arrKeys[0];
        $sThumbUrl = wp_get_attachment_thumb_url($iNum);
        $sImgString = '<a href="' . get_permalink() . '">' .
                        '<img src="' . $sThumbUrl . '" width="150" height="150" alt="Thumbnail Image" title="Thumbnail Image" />' .
                    '</a>';
        echo $sImgString;
      }
    
    endwhile; 
    

希望能帮助到你 :)

于 2013-01-01T16:17:07.253 回答
0

您必须尝试使用​​ nextgen 画廊:http ://wordpress.org/extend/plugins/nextgen-gallery/

于 2013-01-01T16:08:29.100 回答