Last active
August 9, 2018 15:28
-
-
Save sebastienserre/63a9f51159f53c6b427663c86f877236 to your computer and use it in GitHub Desktop.
Disable Gutenberg Callout
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: Disable Gutenberg Callout | |
Plugin URI: https://www.thivinfo.com | |
Description: Disable the Gutenberg Callout added in WordPress 4.9.8 | |
Author: Sébastien SERRE | |
Author URI: https://thivinfo.com | |
Version: 1.0.0 | |
*/ | |
/* | |
Add this file to your wp-content/mu-plugins (create it if doesn't exists) | |
*/ | |
remove_action( 'try_gutenberg_panel', 'wp_try_gutenberg_panel' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment