Is there a way to remove this entirely? I'd like to head over to manage posts when I log in... the rest of this stuff is so beyond useless (especially the RSS feeds)...
Is there a way to remove this entirely? I'd like to head over to manage posts when I log in... the rest of this stuff is so beyond useless (especially the RSS feeds)...
See the 3rd reply in this post from an hour or so ago: http://wordpress.org/support/topic/59911?replies=3
You could bookmark the post screen ?
Alternatively, gut the wp-admin/index.php
This works in 1.5.2 so it should be close for 2.x
<?php
require_once('admin.php');
$title = __('Dashboard');
require_once('admin-header.php');
$today = current_time('mysql', 1);
?>
<?php
require('./admin-footer.php');
?>
Thanks... it was actually a lot easier to hack the index.php to bits than I thought it might have been. *snip, snip* now it's clean and functional without all the additional bloat.
This topic has been closed to new replies.