1

早晨,

我需要一些关于一些 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 中的函数,这样我就可以为所有图像创建一些分页。

在此先感谢,

更新

我似乎在下面有一些东西可以解决这个问题,但它正在无限地拉入一个帖子。

    <?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; ?>
4

0 回答 0