22 lines
549 B
PHP
22 lines
549 B
PHP
<?php
|
|
function custom_dashboard_widget()
|
|
{
|
|
|
|
// get user name
|
|
$current_user = wp_get_current_user();
|
|
$user_name = $current_user->user_login;
|
|
wp_add_dashboard_widget(
|
|
'advisor-dashboard-widget', // ID du widget
|
|
'Dashboard Personnel ', // Titre
|
|
'custom_dashboard_widget_display' // Fonction d'affichage
|
|
);
|
|
}
|
|
|
|
function custom_dashboard_widget_display()
|
|
{
|
|
get_template_part('template-parts/admin/personnal-widget');
|
|
}
|
|
|
|
// Ajouter le widget au tableau de bord
|
|
add_action('wp_dashboard_setup', 'custom_dashboard_widget');
|