Trying to display all posts in a category
I don’t know what you tried so far, but below you have a quick answer to list posts from a caategory by its ID. <?php $args = array( ‘posts_per_page’ => -1, // Will show all posts from the category ‘cat’ => 149, // ID of the category ‘orderby’ => ‘post_date’, ‘order’ => ‘DESC’, ‘post_type’ => … Read more