简体   繁体   中英

How to display posts by category in a static page on WordPress

do you know which code should I use to display posts by category in a static page?

<div>
// This is a static page


// Here I want to display posts from specific category ex. category named hello


</div>

The Complete Implementation for fetching the post from a Specific Category and Display the post in a pages layout if you have more post.

$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();
    ?>

Use the following:

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

There are lots of other arguments you can give. This link will be useful: https://en.support.wordpress.com/display-posts-shortcode/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM