I had the same problem until I found this post:
http://stackoverflow.com/questions/2471036/wordpress-custom-theme-favicon-in-dashboard-menu
Check out the API for add_menu_page:
add_menu_page(page_title, menu_title, capability, handle, [function], [icon_url]);
I pointed the icon_url to nothing.
I hope this helps!
Hi, I’m really new at WordPress, but let me take a shot. You might consider adding a submenu to the “Post” menu on the administration page. You could write a plugin as to not mess with the core code:
‘
// Hook for adding admin menus
add_action(‘admin_menu’, ‘mt_add_pages’);
// action function for above hook
function mt_add_pages() {
add_submenu_page(‘edit.php’, ‘page_title’, ‘Show my posts’, ‘author’, ‘edit.php?author=1’, ”);
}
‘
I hope this helps.