WordPress : widget dans le tableau de bord
Comment ajouter un widget dans le tableau de bord de wordpress ?
function example_dashboard_widget_function() {
echo "Support technique disponible au 01 02 03 04 05";
}
function example_add_dashboard_widgets() {
wp_add_dashboard_widget('example_dashboard_widget', 'Support technique de votre site :', 'example_dashboard_widget_function');
}
add_action('wp_dashboard_setup', 'example_add_dashboard_widgets' );