在WordPress页面中显示类别帖子

时间:2018-06-10 17:12:43

标签: wordpress post categories display

你知道我应该使用哪些代码来显示页面中的类别项目,比如我有一个页面,而且这个页面有一个类别,现在是hello类别我希望所有发布有hello作为类别的帖子将显示在此具有此类别的页面,其他单词是一个具有类别名称hello的页面,在此页面中有与hello类别相同的类别的帖子。

2 个答案:

答案 0 :(得分:0)

使用以下内容:

[display-posts category="fishing,hiking"]

你可以给出很多其他的论据。此链接非常有用:https://en.support.wordpress.com/display-posts-shortcode/

答案 1 :(得分:0)

从特定类别获取帖子的完整实现,如果您有更多帖子,则在页面布局中显示帖子。

$paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1;

$args = array(
    'posts_per_page' => 10,
    'category_name' => ‘your category’,
    'paged' => $paged,
);

$the_query = new WP_Query( $args );

// The Loop
if ( $the_query->have_posts() ) {

    while ( $the_query->have_posts() ) {
        $the_query->the_post();?>
            <h4><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h4>
                <h5><?php the_time('F j, Y'); ?></h5>
                <div>
                   <?php if( has_excerpt() ): the_excerpt(); else: the_content(); endif; ?>
                </div>
            <?php  }?>
    //Page navigation
        <div id="pagenav" class="navigation clearfix">
            <div class="nav-prev alignleft"><?php next_posts_link( '<i class="fa fa-angle-double-left" aria-hidden="true"></i> Older Entries', $the_query->max_num_pages ); ?></div>
            <div class="nav-prev alignright"><?php previous_posts_link( 'Newer Entries <i class="fa fa-angle-double-right" aria-hidden="true"></i>' ); ?></div>
        </div><!-- #pagenav -->
        <?php echo '</div>';

     } else {
        // no posts found
        echo '<h1>No Posts Found</h1>';
    }

    // Restore original Post Data
    wp_reset_postdata();
    ?>