Change WordPress user roles and capabilities › Forums › Give user access to plugin – how to › Limit user to changing a single page & add events through multiple plugins › Reply To: Limit user to changing a single page & add events through multiple plugins
03/05/2018 at 07:54
#4825
Vladimir
Keymaster
2)
You have to insert this line of code:
add_filter('ure_restrict_edit_post_type', 'exclude_posts_from_edit_restrictions');
just before
function exclude_posts_from_edit_restrictions($post_type) {
line in order this post types exclusion works. It does not work at all currently.
Let me know the result.