create a back-end wordpress content submission using custom post type

I have a previously created thread here, but was recommended to make a new one: I need basic help with custom post types Basically here’s my project: I have to create a back-end wordpress gui user input section. The user will enter details about their projects like name, location, what it is, some other details. … Read more

Only allow administrators and editors to access wp-admin

I am trying to restrict access to wp-admin so that only administrators and editors are allowed. At the moment I am using this function: function restrict_admin(){ //if not administrator, kill WordPress execution and provide a message if ( ! current_user_can( ‘manage_options’ ) ) { wp_die( __(‘You are not allowed to access this part of the … Read more

Limit users by custom taxonomy and user roles

This is not duplicated post! I working on the custom theme and have 2 taxonomies: bezirk and ortsgruppen. bezirk acts like main group and ortsgruppen is the sub group under bezirk. I need to asign for each ortsgruppen in which bezirk belong. Both taxonomy are included in the post and custom post types dabei-gsi, homepage-slider, … Read more

Custom post type capabilities require “create_posts” to access the edit posts list page

I have a custom post type and a custom user role that I want to be able to do everything but delete and create this post type. However, this user role can’t view the dashboard’s list of posts for editing when I do not set the “create_{$post_type}” capability. Instead they see a white screen error … Read more

User Access Manager plugin

I have updated the UAM plugin from 1.0Beta2 to 1.1.4 (latest at the moment) and it stopped working. When I select a group to have rights for an article – the selection is not saved. I checked with firebug – the info is present in HTTP POST content, but is not saved in the backend. … Read more