WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Plugin API/Action Reference/welcome panel

Description

In 3.5+, this hook allows you disable the Welcome Panel in the Dashboard. Removing the action also removes the corresponding Screen Option.

Location

This hook is located in `/wp-admin/index.php`, just before wp_dashboard() is called.

Usage / Example

<?php remove_action( 'welcome_panel', 'wp_welcome_panel' ); ?>

Change Log

Related