Skip to content

Instantly share code, notes, and snippets.

@gvgvgvijayan
Created January 23, 2021 11:59
Show Gist options
  • Save gvgvgvijayan/0bb7359e8fa385f0954e87462867ddfa to your computer and use it in GitHub Desktop.
Save gvgvgvijayan/0bb7359e8fa385f0954e87462867ddfa to your computer and use it in GitHub Desktop.
<?php
...
/**
* Fires before the administration menu loads in the admin.
*/
add_action(
'admin_menu',
function() : void {
add_menu_page(
'All Drafts',
'All Drafts',
'manage_options',
'all-drafts',
__NAMESPACE__ . '\bootload_drafts_table',
'dashicons-edit-page',
100
);
}
);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment