使用Dashboard Widgets API很容易做到这一点http://codex.wordpress.org/Dashboard_Widgets_API.
以下是我将采取的创建步骤:
为AJAX处理排队一个jQuery脚本创建一个PHP AJAX函数和相应的AJAX挂钩以保存表单数据创建带有HTML表单输入的仪表板小部件这里有一个添加简单仪表板小部件的示例:
function foo_dash_widget_content() {
//Insert your form element with AJAX capability
}
function foo_dash_widget() {
wp_add_dashboard_widget(\'foo-dash\', __(\'Foo Dash Widget\', \'foodash\'), \'foo_dash_widget_content\');
}
add_action(\'wp_dashboard_setup\', \'foo_dash_widget\');