朝、
いくつかの WP コードに関するガイダンスが必要です。このコードを使用できるかどうか疑問に思っています (これは、私のサイト全体の投稿からすべての画像を取得し、それらをダンプしています):
$args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => null );
$attachments = get_posts( $args );
if ($attachments) {
foreach ( $attachments as $post ) {
setup_postdata($post);
the_attachment_link($post->ID, true);
the_excerpt();
}
}
query_posts();
代わりに WPの関数を使用して、すべての画像のページネーションを作成できるようにします。
前もってありがとう、R
アップデート
以下でこれで何かが機能しているようですが、1つの投稿を無限に引き込んでいます。
<?php $ID = get_the_ID();
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("order=DESC&orderby=post_date&posts_per_page=8&paged=$paged"); while ( have_posts() ) : the_post(); ?>
<?php
$args = array( 'post_type' => 'attachment', 'post_status' => null, 'post_parent' => null, );
$attachments = get_posts( $args );
if ($attachments) {
foreach ( $attachments as $post ) {
setup_postdata($post);
the_attachment_link($post->ID, true);
the_excerpt();
}
}
?>
<?php endwhile; ?>