1

我为我的博客做了一个自定义的 sql 查询。该代码的作用是从具有图库的帖子中检索最新图像。通过这种方式,我可以显示最新的......更不用说有画廊的 12 个帖子 - 代码实际上显示了附加到帖子的第一个图像。

问题是我无法为此创建下一个 prev 功能,我真的需要这个

这是代码:

<?php wp_reset_query();
 global $wpdb;
 $posts = $wpdb->get_results
 ("
 SELECT *
 FROM $wpdb->posts 
 WHERE
 post_status = 'publish'
 AND
 ID IN (
            SELECT DISTINCT post_parent
            FROM $wpdb->posts
            WHERE
              post_parent > 0
            AND
              post_type = 'attachment'
            AND
              post_mime_type IN ('image/jpeg', 'image/png')
  )
ORDER BY post_date DESC LIMIT 0, 12
");

foreach($posts as $post) :
setup_postdata($post);
?>

<?php
$images = get_children(array(
  'post_parent' => get_the_id(),
  'post_type' => 'attachment',
  'post_mime_type' => 'image',
  'orderby' => 'menu_order',
  'order' => 'ASC'
));
$ids = array_keys($images);
            ?>



   <div style="height:132px; width:132px; float:left; margin-right:1px; margin-top:1px; overflow:hidden;" ><?php 
  echo the_attachment_link($ids[0],false, false, true);
            ?></div>


<?php
endforeach;
wp_reset_query();
?>

谢谢

4

2 回答 2

0

您需要将$paged参数放入代码中,然后调用previous/next链接。看到这个:https ://codex.wordpress.org/Pagination#Adding_the_.22paged.22_parameter_to_a_query

于 2013-07-28T20:19:43.647 回答
0

这就是我的问题!当使用 wpdb 对象时,该方法似乎有效,但在我的情况下,它是一个独立的 PHP PDO/SQL 调用,不使用查询对象:(

于 2015-02-13T13:26:28.470 回答