mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
236 B
Text
7 lines
236 B
Text
function wp_block_wp_admin() {
|
|
if ( is_admin() && ! current_user_can( 'administrator' ) && ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
|
|
wp_safe_redirect( home_url() );
|
|
exit;
|
|
}
|
|
}
|
|
add_action( 'admin_init', 'wp_block_wp_admin' );
|