how to create a page that only shows blogs from one catagory

Hi,

Is it possible to have a page that only shows posts from one item from the catagory list?

Andy

Use this plugin: https://wordpress.org/plugins/ultimate-category-excluder/screenshots/

Many thanks, will give it a go

You can also make a copy from your page.php and paste the following code:

<?php 
     $args = array( 'post_type' =>   'post',                        
                           'category_name' =>    'clothing',                    
                           'posts_per_page' =>  6, 
                           'paged' =>  $paged   );
            query_posts( $args );
?>

you have to change “clothing” for your category name.

more information here

Hi @Norbert Lendvai, @taro,

I hope you are well today and thanks for helping out here in this forum.

Your help here is really appreciated.

Thanks,
Movin