This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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; | |
| } |