Contributor role cant remove post
-
I have a site where users can create accounts and upload posts (it’s a custom post type, not the wp standard post type). Currently, I have a problem with users not being able to delete their own posts. Users can click a link to delete a post, I’m using
get_delete_post_link( get_the_ID() );
to do this. However, this only works for Admin roles. New users on the site get the Contributor role by default.I have the “Members” plugin and have checked for the Contributor role:
– Edit posts
– Delete posts
– Publish posts
– Delete private posts
– Delete published posts
– Edit private posts
– Edit published postsI have also tried to give these rights through code and then specified the custom post type, but it’s the same result.
What am I doing wrong? My understanding is that I should be able to give Contributors the right to remove their own posts.
Thank you!
- The topic ‘Contributor role cant remove post’ is closed to new replies.