last bit of info…We also did add this custom bit of code to block access to wp-admin for all but admin
add_action( ‘init’, ‘blockusers_init’ );
function blockusers_init() {
if ( is_admin() && ! current_user_can( ‘administrator’ ) &&
! ( defined( ‘DOING_AJAX’ ) && DOING_AJAX ) ) {
wp_redirect( home_url() );
exit;
}
}
You must be logged in to reply to this topic.
This topic is: resolved