Try this: http://www.vooshthemes.com/blog/wordpress-tip/wordpress-quick-tip-remove-the-dashboard-update-message/ which seems to work good for 2.9- versions
//Copied from the above referenced article
remove_action('wp_version_check', 'wp_version_check');
remove_action('admin_init', '_maybe_update_core');
add_filter('pre_transient_update_core', create_function( '$a', "return null;"));
For 2.9+ try this: http://www.wpinsite.com/code-snippets/remove-wordpress-dashboard-update-notification-message/
add_action('admin_menu','foo_hide_update');
function foo_hide_update() {
remove_action( 'admin_notices', 'update_nag', 3 );
}
Related Posts:
- Add custom column to Users admin panel
- Modal window from within WordPress admin
- How do I remove dashboard access from specific user roles?
- Search posts by ID in admin
- Sort pages in loop by admin’s page attributes order field?
- Edit “thank you for creating with WordPress” in version 3.3.1
- How to save dismissable notice state in WP 4.2?
- Disable Media Uploads to non Admin Users
- How do I load a CSS style into WordPress admin area only?
- Notification that the admin is online
- Plugin to remove Admin menu items based on user role?
- How to obtain the user ID of the current profile being edited in WP-Admin?
- How do I set up the defualt page icon for admin menu?
- Get current active wp color scheme
- Cannot login to WordPress Admin with SSL terminated load balancer
- Is there a hook to put stylesheet and/or JS inside iframes (thickbox or tinyMCE) in admin area
- How to fix admin stylesheet muck-up? [closed]
- Turn off admin emails for new user registrations
- Remove admin AND editor from the “change role to” menu in user listing
- Modify CSS via Theme Control Panel
- Adding custom Javascript to the head tag in Admin
- Making Media Library “Alternative Text” Field Required
- Add extra field when admin create user
- Replacing the List table of a Post Type
- How to customize this automatic slug shortener with an overrwrite function
- changing body background color for custom post type in admin backend
- Adding scripts to admin page in my theme
- How can I place the “Add New Post” contents on a custom page?
- Use latest jQuery in WordPress (admin interface)
- Getting Rid of the WordPress.com Toolbar on Other Sites?
- Any way to inherit methods from both my plugin class and WP_List_Class?
- How to notify the admin about something that happened during a cron job
- wp_dropdown_pages() in theme admin page
- user-new.php less detailed after WP3.1; how to revert?
- How to enable enqueue_script to work with a logged in user?
- I’m receiving requests to change the admin email. How can this be happening?
- How do I change Administrator to Super Administrator
- How can I load an inline script after the enqueued scripts in admin?
- Set admin body to ltr on a rtl installation
- Restore original WP admin bar after BuddyPress install [closed]
- front end editing using iFrames, best approach?
- Are there any filters to add additional columns to the list table on edit-comments.php?
- Can I mass change all admin emails for a multisite instance?
- WordPress Frontend Check If Current User Is Administrator
- Instructions for a custom post type
- WordPress admin area used to administer other site
- Problems with WP_List_Table and hooks
- Display popup or admin-notice after add new categories
- Add ‘Last Modified’ and Attachments (Yes/No) to WordPress Users Column
- WordPress administrator area access disabled temporarily due to widespread brute force attacks
- Modifying the built-in behavior of ajax tag type-ahead functionality of WordPress
- Why am I timing out when using the Menu Editor?
- How can I merge two authors?
- Why can’t a custom postype be registered with “admin_init” hook?
- Accessing variable from admin panel?
- How to pass multiple parameter in add_action()
- Add term of current custom post type to admin body class using admin_body_class
- How can I POST or GET to the same admin page from which I am POST-ing or GET-ing
- WordPress admin toolbar not loading styles after migration
- Changing admin user id for database
- Limiting Admin Backend Search to Title
- Return User Meta text as links to post edit inside the user columns
- Does deleting the table users prevent all logins?
- Include script files for admin submenu page
- How to pass a specific post id from “all posts” list in Admin panel
- Restrict access to admin
- Wp ajax not working from “current_screen” admin hook
- solution to prevent specific admins from altering site contents
- WordPress Admin very slow
- Prevent users in the backend from seeing WP/Plugin notifications and update annoucements?
- Want to know who is login Admin/User
- Default scripts added to each admin page
- Change field layout when adding a page
- Settings API – Last two tabs not rendered separate
- Show all admin menus in a table
- Where is the User’s Admin Bar Preference stored? I want it to default to off for new users
- Is it possible to push admin notices to one specific user instead of all users?
- When admin approves a registered user, I don’t want to send a notification email to users
- add instructions to upload pages and / or forms
- Populate Dropdwon with DIR files, save value and keep it “selected”
- Custom redirection when managing users in admin
- How to retain HTML5 Attributes on Markup
- Signed-in as admin on just part of the site
- How to update my website with WordPress?
- Improving this link color picker code
- WordPress login process is hanging
- Blank page beyond dashboard
- Cannot save Post
- Shortcut to widget/sidebar editing on the admin menu?
- Disable wp-admin log on lightbox overlay
- Add a link to the Admin menu
- Change the Author name to a custom field?
- Buddypress send admin notification email when new subscriber registers
- Background image in login showing in admin area
- send information from the thickbox image uploader second tab
- Change order of the block editor’s panel
- 2FA for admin login only, is it doable?
- Add a user to edit the layout of a site
- CSS Styles specific to Admin Sidebar not loading
- Display notice in block editor after wp_insert_post_data hook