【问题标题】:Pagination for my custom post type in widget小部件中我的自定义帖子类型的分页
【发布时间】:2013-08-13 10:59:27
【问题描述】:

我已经在小部件中显示了自定义帖子类型。现在我想在最后添加分页。因为我的自定义帖子类型中有超过 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>

【问题讨论】:

    标签: wordpress pagination


    【解决方案1】:

    试试这个并在'post_type' =&gt; 'your custom post type name'中输入您的自定义帖子类型的名称

    <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>
    

    【讨论】:

      猜你喜欢
      • 2014-12-11
      • 2016-08-08
      • 1970-01-01
      • 2014-10-30
      • 2014-05-15
      • 2011-03-20
      • 2014-05-21
      • 1970-01-01
      • 2020-05-14
      相关资源
      最近更新 更多