mirror of
https://ghproxy.net/https://github.com/abhijitb/helix.git
synced 2025-08-27 20:13:02 +08:00
6 lines
198 B
PHP
6 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);
|
|
});
|