Easily customize wp-admin and configure application options.
$ composer require wpackagist-plugin/intervention
$ wp plugin install intervention --activate
- PHP >= 7.4.0
Create config/intervention.php
for Sage 10, or intervention.php
inside your theme root folder and return an array.
<?php
return [
'application' => [
],
'wp-admin.$role|$username' => [
],
];
For the options, you can use dot notatation, a standard array, or a combination.
Remove components from wp-admin.
Return wp-admin.$role
or wp-admin.$username
- Support for multiple user roles using a pipe operator.
editor|author
<?php
return [
'wp-admin.$role|$username' => [
'common.adminbar',
],
];
User Roles
all
all-not-administrator
(shortcut alias)administrator
author
editor
contributor
subscriber
- common.adminbar
- common.editor
- common.footer
- common.menu
- common.tabs
- common.title-link
- common.updates
- common.all.list
- common.all.pagination
- common.all.search
- common.all.subsets
- posts
- posts.all
- posts.item
- posts.categories.all
- posts.categories.item
- posts.tags.all
- posts.tags.item
- appearance
- appearance.themes
- appearance.customize
- appearance.widgets
- appearance.menus
- appearance.theme-editor
- tools
- tools.available
- tools.import
- tools.export
- tools.site-health
- tools.export-personal-data
- tools.erase-personal-data
- settings
- settings.general
- settings.writing
- settings.reading
- settings.discussion
- settings.media
- settings.permalinks
Set application options.
- Options are automatically changed to read only fields in
wp-admin
. - Options can be placed under version control.
Return application
.
Tip: automate exporting a config file from the database using Tools→Intervention in the WordPress admin.
<?php
return [
'application' => [
'general' => [
'tagline' => 'Intervention Example',
'wp-address' => 'https://example.com/wp',
'site-address' => 'https://example.com',
'admin-email' => 'example@example.com',
'membership' => false,
'default-role' => 'editor',
'language' => 'en_US',
'timezone' => 'Africa/Johannesburg',
'date-format' => 'F j Y',
'time-format' => 'g:i a',
'week-starts' => 'Mon',
],
],
];
- theme
- posts/posttypes
- taxonomies
- menus
- plugins
- general
- reading
- writing
- discussion
- media
- permalinks
- privacy
- Full configuration options
- Full configuration example
- Register custom posttype
- Register custom taxonomy
- Register custom image sizes
- Register custom nav menu
- Remove comments
- Remove posttype
- Remove taxonomy
- Remove image size
- Remove emoji
- Remove attachments
- Enable custom media/mime types
- Twitter: @withjacoby