Our clients website is using enfold theme and wp job manager/applications.
WP Job Applications uses CPT (publicly_queryable= false) to save application information.
We now found out, that based on the Blog-Layout-Settings the results on this page /?post_type=job_listing include private custom posts. This means, that private custom posts are exposed to public.
A screencast showing that problem is attached to the private content. The post “Muster” should not be shown and is also a separate post type than job_listing.
We have checked the post settings (wp job applications) and saw, that all declarations are correct.
Hey w,
Thank you for the inquiry.
Are you using any posts sorting plugin? These types of plugin could alter the default posts query and affect the Blog Posts element or template. Temporarily, you can try this filter in the functions.php file to completely exclude the job_application post type from the blog posts grid layout.
add_filter("avia_post_slide_query", function($query) {
unset($query["post_type"]["job_application"]);
return $query;
}, 10, 1);
Let us know if that helps.
Best regards,
Ismael
