我正试图在wordpress管理区的帖子部分创建一个仪表板。我希望它就在发布仪表板下面。
例如,这里的代码在我登录到管理区域时立即放置一个仪表板。
// Create the function to output the contents of our Dashboard Widget
function example_dashboard_widget_function() {
// Display whatever it is you want to show
echo "Hello World, I\'m a great Dashboard Widget";
}
// Create the function use in the action hook
function example_add_dashboard_widgets() {
wp_add_dashboard_widget(\'example_dashboard_widget\', \'Example Dashboard Widget\', \'example_dashboard_widget_function\');
}
// Hook into the \'wp_dashboard_setup\' action to register our other functions
add_action(\'wp_dashboard_setup\', \'example_add_dashboard_widgets\' );