Skip to content

Instantly share code, notes, and snippets.

@uamv
Created March 23, 2018 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uamv/73726909d292d8bc05737ed41e64a8a1 to your computer and use it in GitHub Desktop.
Save uamv/73726909d292d8bc05737ed41e64a8a1 to your computer and use it in GitHub Desktop.
Suppress Gutenberg Teaser in WP 4.9.5
add_action( 'admin_init', 'typewheel_remove_gutenberg_teaser' );
function typewheel_remove_gutenberg_teaser() {
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