Add Custom Dashboard Widgets in WordPress.

Code

Add Custom Dashboard Widgets in WordPress.

How To Add New Custom Dashboard Widgets in WordPress?

There are many of new themes coming out for WordPress every day, but none of them seems to utilize this feature for providing useful information and links for client.
WordPress developers should add custom dashboard widget with support information when creating custom themes for clients.

these can be help information or may be support links of developer.

For adding Custom Dashboard Widgets in WordPress we will use one hook and one WordPress function.

  1. wp_dashboard_setup hook
  2. wp_add_dashboard_widget function

About “wp_add_dashboard_widget”


wp_add_dashboard_widget( string $widget_id, string $widget_name, callable $callback, callable $control_callback = null, array $callback_args = null )

Parameters

$widget_id
(string) (Required) Widget ID (used in the ‘id’ attribute for the widget).
$widget_name
(string) (Required) Title of the widget.
$callback
(callable) (Required) Function that fills the widget with the desired content. The function should echo its output.
$control_callback
(callable) (Optional) Function that outputs controls for the widget.
Default value: null
$callback_args
(array) (Optional) Data that should be set as the $args property of the widget array (which is the second parameter passed to your callback).

Documentation
You can add one by pasting the following code to your thems function.php

function CustomDashboardWidgets() {
  global $wp_meta_boxes; 
  wp_add_dashboard_widget('CustomHelpWidget','Custom Help Dashboard','CustomDashboardHelp');
} 
function CustomDashboardHelp() {
  echo 'My First Custom Dashboard Widgets';
}
add_action('wp_dashboard_setup','CustomDashboardWidgets'); 
null

Shiv kumawat

Executive Director & CEO

"Shiv kumawat is the Executive Director and CEO of Eoxys It Solution LLP and the strategic mind behind the company"s growth. His expertise in operational efficiency and team leadership empowers his colleagues to excel and innovate.”

Latest Posts

Seeds of Innovation: How AI is Redefining American Agriculture in 2025

  Seeds of Innovation: How AI is Redefining American Agriculture in 2025 Planting the Future with Artificial Intelligence In 2025,…

Shafeeq Khan
September 11, 2025

Building the Future: AI Innovations and Essential Features for Healthcare Apps in 2025

  Building the Future: AI Innovations and Essential Features for Healthcare Apps in 2025 The Dawn of Intelligent Health Apps…

Shafeeq Khan
September 10, 2025

When Machines Heal: Exploring the New Frontier of AI in Mental Health Care

  When Machines Heal: Exploring the New Frontier of AI in Mental Health Care Technology Steps Into Compassion In the…

Shafeeq Khan
September 9, 2025
,

Leave a Reply

Your email address will not be published. Required fields are marked *