Making a Custom Post type only visible to non-users via a specific link

I am working on creating a small web-app with wordpress as the framework. It allows you to input a customer and in turn sends an email to the customer with a link back to the website in order to complete a short survey. I have a “Customer” Custom Post Type which includes the survey questions … Read more

How can I have different groups of editors only allowed to edit certain parent+subpages?

I’ve tried a bunch of different plugins, including Role Scoper, Advanced Access Manager, User Account Manager and more, to accomplish this but can’t seem to get it working right. Basically, the company has multiple departments and each department has a parent page + sub pages off the ‘Main Page’. For example, the ‘conference services’ department … Read more

Let new user role to ‘edit_others_posts’ of other user role, not of its own type

In my system, I’m making two new roles: Third Party (TP) (lesser privileges) Data Entry Operator (DEO) (powerful over Third Party – but not of its own group) My CPT ‘capabilities’ parameter is revamped using ‘map_meta_cap’ => true like: … ‘capabilities’ => array ( ‘read’ => ‘read_cpt’, ‘edit_posts’ => ‘edit_cpt’ ), ‘map_meta_cap’ => true … … Read more