ダッシュボードにウィジェットを追加する

3.01 functions.php

<?php
add_action('wp_dashboard_setup', 'custom_dashboard_widgets');

function custom_dashboard_widgets(){
	wp_add_dashboard_widget('my_custom_widget_id', '追加ウィジェット', 'my_custom_widget');
	wp_add_dashboard_widget('my_custom_widget_id_second', '二つ目のウィジェット', 'my_second_custom_widget');
}

function my_custom_widget() {
	echo date("Y m d h:i:s");
}

function my_second_custom_widget() {

	echo '<p>2つ目のダッシュボードウィジェット</p>';
}
?>

[emulsion_relate_posts]