mirror of
https://ghproxy.net/https://github.com/abhijitb/helix.git
synced 2025-08-28 06:26:00 +08:00
7 lines
217 B
PHP
7 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;
|
|
});
|