Cant display custom post type posts from a specific category WordPress
It looks to me like you are using strings when they should be int. ‘posts_per_page’ => ’20’, // ’20’ is a string ‘cat’ => ‘508’ // ‘508’ is a string Should be ‘posts_per_page’ => 20, // 20 is int ‘cat’ => 508 // 508 is int I think this is probably the main issue. Also … Read more