Skip to content

Instantly share code, notes, and snippets.

View smithjw1's full-sized avatar

Jacob Smith smithjw1

  • Wordpress VIP
  • Seattle, WA
View GitHub Profile
@smithjw1
smithjw1 / disable-html-inserter.js
Created April 15, 2026 18:15
Disable WordPress 7.0 Features
/**
* Disable WP 7.0 Features - Hide HTML Block from Inserter
*
* Hides the HTML block from the block inserter only.
* Existing HTML blocks in content will continue to work.
*/
(function() {
'use strict';
@smithjw1
smithjw1 / rtc-metabox-cli-audit.php
Created April 14, 2026 18:49
WordPress plugin to check for metabox real-time collaboration compatibility
<?php
/**
* Plugin Name: Meta Box RTC Audit (CLI)
* Description: WP-CLI command to audit meta box RTC support.
*/
if ( ! defined( 'WP_CLI' ) || ! WP_CLI ) {
return;
}