To add a sidebar widget to your dashboard (after selecting the option from the Dashboard management page) use the code:
<?php dynamic_sidebar('admin');?>
The Admin sidebar is modified and controlled the exact same way as any other sidebar.
If you use the WP-UserOnline plugin you can use:
=My new content doesn't show up nicely. It is pushed to the bottom. = If you find that your new content doesn’t align nicely you can add:
<div style="float:left; width:460px;">
//
//Add all other content here
//
</div>
= Can everyone see the information I add?= Yes, you can use User Roles (See Wordpress Codex). Or just use:
<?php if(current_user_can('edit_users')){ ?>
// Content you don't want people to see here
<?php } ?>
Any code that can be used in a Wordpress Theme can be used in the dashboard.
Unfortunately, the only way to get the plugin to work on 2.0.x is to completely wipe the dashboard.




