WordPress Categories and Posts

Last updated: 2020-05-04

Query the WordPress database and return records for a single category:

query_posts(array(
    'category_name' => 'category-name', // get posts by category name (e.g. player-profiles)
    'posts_per_page' => -1 // all posts
));