mirror of
https://ghproxy.net/https://github.com/abhijitb/helix.git
synced 2025-08-28 00:34:34 +08:00
8 lines
217 B
PHP
8 lines
217 B
PHP
|
<?php
|
||
|
add_action('admin_init', function () {
|
||
|
$screen = get_current_screen();
|
||
|
if (!is_admin() || $screen->id === 'toplevel_page_helix') return;
|
||
|
wp_redirect(admin_url('admin.php?page=helix'));
|
||
|
exit;
|
||
|
});
|