Wordpress 小部件中自定义帖子类型的分页

Wordpress 小部件中自定义帖子类型的分页,wordpress,pagination,Wordpress,Pagination,我已经在小部件中显示了自定义帖子类型。现在我想在最后一页添加分页。因为我的自定义帖子类型中有10多篇帖子 <ul class="posts-list"> <?php if (have_posts()) : ?> <?php global $post; $cats = get_the_category(); $cat_name = $cats[0]->name; $args = array( 'posts_per_page'

我已经在小部件中显示了自定义帖子类型。现在我想在最后一页添加分页。因为我的自定义帖子类型中有10多篇帖子

<ul class="posts-list">
<?php if (have_posts()) : ?>
<?php

global $post;
    $cats = get_the_category();
    $cat_name = $cats[0]->name;
    $args = array(
    'posts_per_page'   => 10,
    'offset'           => 0,
    'category'         => $cat_name,
    'orderby'          => 'post_date',
    'order'            => 'DESC',
    'post_status'      => 'publish',
    'suppress_filters' => true );

$previous_post = get_posts($args);
foreach ( $previous_post as $post ) : 
  setup_postdata( $post ); ?>
    <li>
        <h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
        <p>posted on <?php the_time(' F jS, Y') ?> by <?php the_author(); ?></p>
        <p>Posted in <?php echo $cat_name->name; $cat_name = get_the_category($post->ID); ?></p>    
    </li>
<?php endforeach;
wp_reset_postdata(); ?>
<?php endif; ?>
</ul>
  • 张贴于

    张贴在


试试这个,在
'post\u type'=>您的自定义帖子类型名称中输入您的自定义帖子类型名称。

<ul class="posts-list">
<?php if (have_posts()) : ?>
<?php

global $post;
$paged1 = isset( $_GET['paged1'] ) ? (int) $_GET['paged1'] : 1;
    $cats = get_the_category();
    $cat_name = $cats[0]->name;
    $args = array(
    'posts_per_page'   => 10,
    'offset'           => 0,
    'category'         => $cat_name,
    'orderby'          => 'post_date',
    'paged'          => $paged1,
    'post_type' => 'your custom post type name'
    'order'            => 'DESC',
    'post_status'      => 'publish',
    'suppress_filters' => true );

$previous_post = get_posts($args);
foreach ( $previous_post as $post ) : 
  setup_postdata( $post ); ?>
    <li>
        <h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
        <p>posted on <?php the_time(' F jS, Y') ?> by <?php the_author(); ?></p>
        <p>Posted in <?php echo $cat_name->name; $cat_name = get_the_category($post->ID); ?></p>    
    </li>
<?php endforeach;
?>
<?php endif; 

$pag_args1 = array(
    'format'   => '?paged1=%#%',
    'current'  => $paged1,
    'total'    => $previous_post->max_num_pages,
    'add_args' => array( 'paged1' => $paged1 )
);
echo paginate_links( $pag_args1 );
 wp_reset_postdata();  ?>

</ul>
  • 张贴于

    张贴在