How to get all posts related to particular category name?
Just use WP_Query() to generate your custom query, using the category parameters. Assuming you know (or know how to get) the ID of the specific category, as $catid: <?php $category_query_args = array( ‘cat’ => $catid ); $category_query = new WP_Query( $category_query_args ); ?> Note: you could also pass the category slug to the query, via … Read more