Title: Block Controller
Author: Joni Halabi
Published: <strong>Pebrero 27, 2020</strong>
Last modified: Abril 17, 2025

---

Search plugins

![](https://ps.w.org/block-controller/assets/icon-256x256.jpg?rev=2251598)

# Block Controller

 By [Joni Halabi](https://profiles.wordpress.org/thatdevgirl/)

[Download](https://downloads.wordpress.org/plugin/block-controller.1.4.2.zip)

 * [Details](https://ceb.wordpress.org/plugins/block-controller/#description)
 * [Reviews](https://ceb.wordpress.org/plugins/block-controller/#reviews)
 *  [Installation](https://ceb.wordpress.org/plugins/block-controller/#installation)
 * [Development](https://ceb.wordpress.org/plugins/block-controller/#developers)

 [Support](https://wordpress.org/support/plugin/block-controller/)

## Description

**Important notice!**

Due to a shift in my personal and professional priorities, I have decided to take
a step back from development. As a result, this plugin is no longer being actively
maintained. You are welcome to [fork it](https://github.com/thatdevgirl/block-controller)
and create your own updates. If you do so, please credit me as the original author.(
I would also love to hear about this plugin’s new life!)

All the best, Joni.

—

This WordPress plugin provides site administrators with the ability to turn on and
off specific post editor (Gutenberg) content blocks.

## Screenshots

 * [[
 * The main settings page, where site administrators can enable and disable blocks.
   This page highlights blocks that are already in use.
 * [[
 * The block usage summary page, which displays a quick view of the blocks used 
   on the site. This page enumerates the number of instances of each block throughout
   the site and the number of pages each block is used on.
 * [[
 * The block usage details page for all blocks. This page display all blocks used
   throughout the site and a linked list of the pages each block is used on.
 * [[
 * The block usage details page for a single block. This page is similar to the 
   details page for all blocks, but includes only the information for a single block.

## Installation

 1. In the WordPress admin, install and activate the Block Controller plugin.
 2. Go to the plugin’s settings page under `Block Controller`.
 3. All blocks are on (enabled) by default to prevent compatibility issues on plugin
    activation.
 4. Turn off any block that you would like to disable.
 5. Some blocks will not be able to be disabled because they are already used by at
    least one post or page on the site. You can only disable blocks that are not currently
    in use. If a block is in use by at least one post, the number of uses will be listed
    next to that block, along with a link to the block audit page.
 6. Go to the Usage Summary page (under `Block Controller -> Usage Summary`) to see
    a list of all blocks used across the site, as well as their associated posts.

## Reviews

![](https://secure.gravatar.com/avatar/cb9358ffd8587c3498800d9c404ab24e3f8cf81596d7038125e10a65c76226de?
s=60&d=retro&r=g)

### 󠀁[Simple though powerful and fast too!](https://wordpress.org/support/topic/simple-though-powerful-and-fast-too/)󠁿

 [Bjarne Oldrup](https://profiles.wordpress.org/oldrup/) Nobyembre 24, 2024

Listing how many times a block has been used, is very valuable when deciding which
blocks to hide. This plugin does that very well too. And it’s pretty darn fast! 
Good job.

![](https://secure.gravatar.com/avatar/8c0ced2ad5a0c50ec3a0903b1d1946b4309a9b5e4ed01ff7f8d40bc710f49e3e?
s=60&d=retro&r=g)

### 󠀁[Absolutely a 5 star plugin !](https://wordpress.org/support/topic/absolutely-a-5-star-plugin-3/)󠁿

 [nick6352683](https://profiles.wordpress.org/nick6352683/) Abril 29, 2020

The Block auditor section alone deserves 5 stars. Thank you.

 [ Read all 2 reviews ](https://wordpress.org/support/plugin/block-controller/reviews/)

## Contributors & Developers

“Block Controller” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Joni Halabi ](https://profiles.wordpress.org/thatdevgirl/)

“Block Controller” has been translated into 1 locale. Thank you to [the translators](https://translate.wordpress.org/projects/wp-plugins/block-controller/contributors)
for their contributions.

[Translate “Block Controller” into your language.](https://translate.wordpress.org/projects/wp-plugins/block-controller)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/block-controller/),
check out the [SVN repository](https://plugins.svn.wordpress.org/block-controller/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/block-controller/)
by [RSS](https://plugins.trac.wordpress.org/log/block-controller/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.4.2

 * Tested with WordPress 6.5
 * Refactored plugin styles

#### 1.4.1

 * Tested with WordPress 6.4.
 * Fixed “lodash is not defined” error.
 * Added options for blocks added with WP 6.4.

#### 1.4

 * Updated the block usage summary page to use the core WP Table, which adds sorting
   functionality to the page and block count columns.

#### 1.3

 * Added a block summary view to display a simple table that lists all of the blocks
   used on the site, along with the number of instances of each block and the number
   of pages each block appears on.
 * Renamed the “Block Inventory” pages to “Block Usage”.
 * Made the “Block Usage” page more robust. The page by default will list all pages,
   but if it is navigated to from an individual block link on either the main settings
   page or the usage summary page, it will display information for just that one
   block.
 * [FIX] Fixed a fatal JavaScript error on multisites, where the post editor fails
   to load, resulting in a “white screen of death”.
 * [TECH DEBT] Minor code refactoring and adding additional, inline comments.

#### 1.2

 * Replacing `wp_localize_script` with `wp_add_inline_script` to pass PHP data to
   the JavaScript. This better adheres to WordPress standards.
 * Adding new blocks to the list of blocks capable of being disabled. Most of them
   are the ones that support full-site editing.

#### 1.1.3

 * Fixing a fatal PHP bug that was discovered in PHP 8, where the array_merge to
   combine all blocks across all packages into a single array fails because the 
   keys are also passed to the array_merge function.

#### 1.1.2

 * Fixing a potential fatal PHP bug in getting the block inventory, where the `is_user_logged_in()`
   function may not be defined when the inventory function makes the call to get
   all posts.

#### 1.1

 * Tested for support with WordPress core 5.7.
 * Changed the way blocks are disabled. Instead of unregistering blocks in the editor(
   which is risky if this is done on a site where that block is being used), the
   blocks are simply removed from the Block Inserter.
 * FIX: You can actually disable the Classic block now.
 * FIX: Since embed blocks are variations of the core embed block (as of core 5.6),
   fixed the way those blocks are disabled so they actually disable.
 * FIX: Squashed PHP bugs related to recent WP core updates.
 * Reorganized the list of core blocks on the settings page to be less arbitrary.
 * CSS updates to the settings pages.

#### 1.0.2

 * A small update was needed for when the plugin is initially installed, to add 
   a check if the DB has no disabled blocks option (because it doesn’t!).

#### 1.0

 * Initial release

## Meta

 *  Version **1.4.3**
 *  Last updated **12 bulan ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 5.0 or higher **
 *  Tested up to **6.7.5**
 *  PHP version ** 7.0 or higher **
 *  Languages
 * [English (US)](https://wordpress.org/plugins/block-controller/) and [Swedish](https://sv.wordpress.org/plugins/block-controller/).
 *  [Translate into your language](https://translate.wordpress.org/projects/wp-plugins/block-controller)
 * Tags
 * [blocks](https://ceb.wordpress.org/plugins/tags/blocks/)[content](https://ceb.wordpress.org/plugins/tags/content/)
   [gutenberg](https://ceb.wordpress.org/plugins/tags/gutenberg/)
 *  [Advanced View](https://ceb.wordpress.org/plugins/block-controller/advanced/)

## Ratings

 5 out of 5 stars.

 *  [  2 5-star reviews     ](https://wordpress.org/support/plugin/block-controller/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/block-controller/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/block-controller/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/block-controller/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/block-controller/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/block-controller/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/block-controller/reviews/)

## Contributors

 *   [ Joni Halabi ](https://profiles.wordpress.org/thatdevgirl/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/block-controller/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://www.buymeacoffee.com/thatdevgirl)