I am trying to enable slug Metabox for contributors.
Find a code to remove slug Metabox try to change it in way to work around my problem but nothing happens.
function add_contributor_post_meta_box() {
global $post;
if ( current_user_can( 'edit_post', $post->ID )) {
add_meta_box('slugdiv', 'post', 'normal');
}
}
add_action('admin_menu', 'add_contributor_post_meta_box');
Anyone can help to solve this problem?
My main problem coming from, when a contributor sends a post and enters the title and permalink after sending it for review the permalink automatically changes to the main title, I don’t want this to happen, also need to know how to fix this problem any help?