mirror of
https://ghproxy.net/https://github.com/abhijitb/helix.git
synced 2025-08-28 00:34:34 +08:00
7 lines
198 B
PHP
7 lines
198 B
PHP
|
<?php
|
||
|
add_action('admin_menu', function () {
|
||
|
add_menu_page('Helix', 'Helix', 'read', 'helix', function () {
|
||
|
echo '<div id="helix-root"></div>';
|
||
|
}, 'dashicons-admin-generic', 2);
|
||
|
});
|