Custom user profile, registration, login page with theme
WordPress user profile page uses the administration interface, and its user registration / login page is not part of the theme. I would like to
WordPress user profile page uses the administration interface, and its user registration / login page is not part of the theme. I would like to
basically I’d like to have my page accessible by only certain listed users which we’ll make a unique code.
How can I restrict a specific logged user (current role is subscriber) via wp_get_current_user() to view only specific pages?
I wish to create a custom capability for accessing the interface of my plugin.
I’m trying to implement what seemed like a relatively straight forward idea, basically I am building an access control plugin to control viewing and editing of a custom post type (in this case ‘Projects’).
I have a restricted area on a website that can only be accessed by logged in users. For that I created a page template with a ‘current_user_can()’ condition.
In the Comments page (/wp-admin/edit-comments.php
), every logged in user can see all the site comments.
I have a situation where I need to hide a specific category and it’s children from users who are logged in as Contributors. I don’t want them to see this category and it’s children in the categories meta-box on the add new post screen.
We currently have about 50 pages, each of which I want a user (eg, bob, rob, smith) to be able to edit only 1 page. For example, bob & smith each have their own page. I do not want bob to be able to edit smith’s page. I want bob to ONLY be able to edit bob’s page. I don’t care if he can see other pages.
Looking through the user roles, I don’t see a way to currently to do this- I only see how to allow restrict access on a global scale.
I need some pro eyes please.