WPThumbs
Themes Plugins By purpose By industry Best-of lists Fix it guides
Free Plugin by landwire v1.3.2

Responsive Block Control

Responsive Block Control adds responsive toggles to a "Visibility" panel of the block editor, to show or hide blocks according to screen width.

Responsive Block Control

The facts

Rating
5★ from 4
Active installs
1k+
Price
Free
Last updated
21 Feb 2026
Added
Jan 2020
Requires WP
5.2
Tested up to
WP 6.9.7
Requires PHP
7.4
Downloads
15,583

Our analysis

AI-assisted

Responsive Block Control is a WordPress plugin that enables you to show or hide blocks in the block editor based on the display width of the screen. It adds responsive toggles to the 'Visibility' panel, allowing for greater control over how content is displayed across different devices.

This plugin is suitable for users who want to manage the visibility of their blocks responsively, particularly those with contributor access or higher. It is especially useful for developers and site owners looking to enhance the user experience on various screen sizes.

Best for: This plugin suits WordPress site owners and developers who need responsive control over block visibility.

What it does well

  • Adds responsive visibility toggles to the block editor
  • Resolves a stored cross-site scripting vulnerability in earlier versions
  • Allows for custom CSS rules per breakpoint
  • Supports configuration of existing breakpoints

Where it falls short

  • Does not work with Classic Block, Widget Block, or HTML Block in Widget Screen
  • No information on specific compatibility with themes or other plugins

Verdict

Responsive Block Control offers a straightforward solution for managing block visibility based on screen size, though it has limitations regarding certain block types.

From the developer

landwire's own description of Responsive Block Control, lightly tidied.

Responsive Block Control adds responsive toggles to a “Visibility” panel of the block editor, to show or hide blocks according to screen width.

Security

Version 1.3.1 resolves a stored cross‑site scripting (XSS) vulnerability (CVE‑2025‑62135) affecting earlier versions (<= 1.2.9).
Users with contributor access or higher should update immediately.

If you discover a security vulnerability, please report it responsibly to: security@saschapaukner.de

Limitations

Does not work with the Classic Block, Widget Block or Widget Area Block [‘core/freeform’, ‘core/legacy-widget’, ‘core/widget-area’], as the those blocks do not support block attributes. Does also not work with the HTML Block [‘core/html’] inside the Widget Screen, as this one also does not support block attributes there.

Configuration

Override existing breakpoints

function override_responsive_block_control_breakpoints($break_points) {
     $break_points['base'] = 0;
     $break_points['mobile'] = 400;
     $break_points['tablet'] = 800;
     $break_points['desktop'] = 1000;
     $break_points['wide'] = 1600;

     return $break_points;
 }

 add_filter('responsive_block_control_breakpoints', 'override_responsive_block_control_breakpoints');

Provide custom CSS

You can provide your own CSS rules per breakpoint using the new filter responsive_block_control_custom_css_rules.

add_filter('responsive_block_control_custom_css_rules', function($rules) {
    return [
        'mobile'  => 'display: none !important;',
        'tablet'  => 'display: none !important;',
        'desktop' => 'display: none !important;',
        'wide'    => 'display: none !important;',
    ];
});

Stop css output completely

 function override_responsive_block_control_add_css() {
      return false;
  }
  add_filter('responsive_block_control_breakpoints', 'override_responsive_block_control_add_css');

Read the full description on the official page →

Tagged as

Alternatives

Other plugins for securing a site.

Really Simple Security

Easily improve site security with WordPress Hardening, Two-Factor Authentication (2FA), Login Protection, Vuln...

Free 3M+ installs 4.9★ (8,862)
Wordfence Security

Firewall, Malware Scanner, Two Factor Auth, and Comprehensive Security Features, powered by our 24-hour team....

Free 5M+ installs 4.7★ (4,983)
Akismet Anti-spam: Spam Protection

The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam sol...

Free 5M+ installs 4.7★ (1,186)
Loginizer

Loginizer is a WordPress security plugin which helps you fight against bruteforce attacks.

Free 1M+ installs 4.8★ (1,030)
Safe SVG

Enable SVG uploads and sanitize them to stop XML/SVG vulnerabilities in your WordPress website.

Free 1M+ installs 4.9★ (79)
All-In-One Security

Protect your website investment with All-In-One Security (AIOS) – a comprehensive and easy to use security plu...

Free 1M+ installs 4.7★ (1,715)