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

AI in Healthcare USA Transforming Patient Care and Operations in 2025

  AI in Healthcare USA: Transforming Patient Care and Operations in 2025 The Rise of AI in Healthcare Across the…

sakshi
August 7, 2025

AI in Restaurants: How Artificial Intelligence Is Revolutionizing the Food Service Industry

  AI in Restaurants: How Artificial Intelligence IsRevolutionizing the Food Service Industry Introduction: The Digital Transformation of Dining Restaurants around…

sakshi
August 6, 2025

Artificial Intelligence in Mobile App Development: The Complete 2025 Guide

  Artificial Intelligence in Mobile App Development:The Complete 2025 Guide Introduction: Why AI is Now Central to Mobile App Innovation…

sakshi
August 6, 2025
,

Leave a Reply

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