Answers for "how to show all posts in category wordpress page"

PHP
0

show all posts from category

<?php
    $args = array( 'category' => 7, 'post_type' =>  'post' ); 
    $postslist = get_posts( $args );    
    foreach ($postslist as $post) :  setup_postdata($post); 
    ?>  
    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> 
    <?php the_excerpt(); ?>  
    <?php endforeach; ?>
Posted by: Guest on January-01-2021

Code answers related to "how to show all posts in category wordpress page"

Browse Popular Code Answers by Language