Paginating a list of all posts collected by category titles
Aren’t you supposed to have single quotes around paged in $args = array( ‘post_type’ => ‘resources’, ‘posts_per_page’ => 10, ‘cat’ => $cat_id, paged => $paged ); like so: $args = array( ‘post_type’ => ‘resources’, ‘posts_per_page’ => 10, ‘cat’ => $cat_id, ‘paged’ => $paged );