Building my first custom theme in Wordpress and I made a custom query to only display one category on a custom category page
Using: $cat_posts = new WP_Query("category_name=deep-thoughts-page");
I no longer have pagination. My query works perfect to create a custom category page for my posts labeled with the category 'deep-thoughts-page', it also works perfectly everywhere else.
I understand this query, I like this query, and it works, I just need my pagination back.
Note: I am using wp-admin panel to limit number of posts per page (which works fine with my query), but I still lose pagination.
Please help:)