Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action(
- 'admin_init',
- function () {
- if ( ! current_user_can( 'edit_others_posts' ) && ! defined( 'DOING_AJAX' ) ) {
- wp_redirect( home_url() );
- exit;
- }
- }
- );
- add_filter(
- 'show_admin_bar',
- function ( $show ) {
- if ( ! current_user_can( 'edit_others_posts' ) ) {
- return false;
- }
- return $show;
- }
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement