Eğer üyelerin wp-admin (admin paneline) kısmına girmesini istemiyorsanız Aşağıdaki kodu kullandığın temanın function.php kısmına eklemeniz gerekir.
add_action('auth_redirect','custom_admin_access');
function custom_admin_access() {
global $current_user;
if( !current_user_can('manage_options') && is_admin() ) {
wp_redirect( home_url() );
}
}
function custom_admin_access() {
global $current_user;
if( !current_user_can('manage_options') && is_admin() ) {
wp_redirect( home_url() );
}
}
Hiç yorum yok:
Yorum Gönder