Skip to content

Instantly share code, notes, and snippets.

@juanmaguitar
Last active July 3, 2024 10:40
Show Gist options
  • Save juanmaguitar/ddaf2b097ac5562cfe6ede5fc58313de to your computer and use it in GitHub Desktop.
Save juanmaguitar/ddaf2b097ac5562cfe6ede5fc58313de to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Beginner Friendly Playground
* Description: Disables everything that's not really valuable for a first time explorer.
* Version: 0.1.0
* Requires at least: 6.5
*/
defined( 'ABSPATH' ) || exit;
add_action('load-index.php', 'disable_welcome_panel');
function disable_welcome_panel() {
remove_action('welcome_panel', 'wp_welcome_panel');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment