Metiers_du_patrimoine_theme/includes/dashboard-widget.php
Antoine M 97fc8b7aaa
All checks were successful
continuous-integration/drone/push Build is passing
switching dahsboard-widget to a new folder template
2025-02-27 09:41:26 +01:00

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');