Skip to content
master
Go to file
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Intervention

WordPress plugin containing modules to cleanup and customize wp-admin.

Installation

Composer:

Recommended method/s;

Roots Bedrock and WP-CLI

$ composer require soberwp/intervention
$ wp plugin activate intervention

WP-CLI:

$ wp plugin install https://github.com/soberwp/intervention/archive/master.zip --activate

Manual:

  • Download the zip file
  • Unzip to your sites plugin folder
  • Activate via WordPress

Requirements:

Usage

Import the namespaced function:

Place at the top of your themes functions.php file.

use function \Sober\Intervention\intervention;

if (function_exists('\Sober\Intervention\intervention')) {
    // now you can use the function to call the required modules and their params
    intervention('remove-menu-items', 'plugins', 'all');
}

Modules

Use function intervention() to use plugin modules.

Example functions.php file

intervention('remove-menu-items', ['themes', 'plugins'], ['editor', 'author']);

Click on a module below to view its usage documentation:

Quick Reference

  • add-acf-page
    intervention('add-acf-page', $config(string|array), $roles(string|array));

  • add-dashboard-item
    intervention('add-dashboard-item', $item(array));

  • add-dashboard-redirect
    intervention('add-dashboard-redirect', $route(string), $roles(string|array));

  • add-menu-page
    intervention('add-menu-page', $config(string|array), $roles(string|array));

  • add-svg-support
    intervention('add-svg-support', $roles(string|array));

  • disable-attachment-pages
    intervention('disable-attachment-pages');

  • remove-customizer-items
    intervention('remove-customizer-items', $items(string|array), $roles(string|array));

  • remove-dashboard-items
    intervention('remove-dashboard-items', $items(string|array), $roles(string|array));

  • remove-emoji
    intervention('remove-emoji');

  • remove-help-tabs
    intervention('remove-help-tabs');

  • remove-howdy
    intervention('remove-howdy', $replace(string));

  • remove-menu-items
    intervention('remove-menu-items', $items(string|array), $roles(string|array));

  • remove-page-components
    intervention('remove-page-components', $components(string|array));

  • remove-post-components
    intervention('remove-post-components', $components(string|array));

  • remove-taxonomies
    intervention('remove-taxonomies', $taxonomies(string|array));

  • remove-toolbar-frontend
    intervention('remove-toolbar-frontend', $roles(string|array));

  • remove-toolbar-items
    intervention('remove-toolbar-items', $items(string|array), $roles(string|array));

  • remove-update-notices
    intervention('remove-update-notices', $roles(string|array));

  • remove-user-fields
    intervention('remove-user-fields', $fields(string|array), $roles(string|array));

  • remove-user-roles
    intervention('remove-user-roles', $roles(string|array));

  • remove-widgets
    intervention('remove-widgets', $widgets(string|array));

  • update-dashboard-columns
    intervention('update-dashboard-columns', $amount(integer));

  • update-label-footer
    intervention('update-label-footer', $label(string));

  • update-label-page
    intervention('update-label-page', $labels(string|array));

  • update-label-post
    intervention('update-label-post', $labels(string|array));

  • update-pagination
    intervention('update-pagination', $amount(integer));

Support

Updates

Composer:

  • Change the composer.json version to ^1.3.0**
  • Check CHANGELOG.md for any breaking changes before updating.
$ composer update

WordPress:

Includes support for github-updater to keep track on updates through the WordPress backend.

About

WordPress plugin containing modules to cleanup and customize wp-admin

Topics

Resources

License

Packages

No packages published

Languages

You can’t perform that action at this time.