Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 900 Bytes

tools.md

File metadata and controls

53 lines (38 loc) · 900 Bytes

wp-admin.$role.tools

Update, remove or redirect the tools menu item.

Options;

<?php

return [
    'wp-admin.$role|$username' => [
        'tools',
        'tools' => (string) $route,
        'tools.title' => (string) $title,
        'tools.icon' => (string) $dashicon,
    ],
];

Remove;

Remove from menu;

<?php

return [
    'wp-admin.$role|$username' => [
        'tools',
    ],
];

Remove from menu and enforce a page redirect;

<?php

return [
    'wp-admin.$role|$username' => [
        'tools' => 'posts',
    ],
];

Bug?