Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 918 Bytes

plugins.md

File metadata and controls

53 lines (38 loc) · 918 Bytes

wp-admin.$role.plugins

Update, remove or redirect the plugins menu item.

Options;

<?php

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

Remove;

Remove from menu;

<?php

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

Remove from menu and enforce a page redirect;

<?php

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

Bug?