Last active
July 3, 2024 10:40
-
-
Save juanmaguitar/ddaf2b097ac5562cfe6ede5fc58313de to your computer and use it in GitHub Desktop.
This file contains 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: 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