Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 625 Bytes

common.footer.md

File metadata and controls

38 lines (27 loc) · 625 Bytes

wp-admin.$role.common.footer

Remove wp-admin footer components.

Options;

  • Parent items remove child items.
<?php

return [
    'wp-admin.$role|$username' => [
        'common.footer',
        'common.footer.credit',
        'common.footer.credit' => (string) $credit,
        'common.footer.version',
    ],
];

Examples;

Remove all;

<?php

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

Bug?