0

I'm trying to hide this item in the admin:

enter image description here

I have already removed the updated message using this:

add_action('admin_menu','wphidenag');
    function wphidenag() {
remove_action( 'admin_notices', 'update_nag', 3 );
}

But I haven't found a solution to this item, any ideas to do it the proper way, not with css?

4

1 回答 1

0

Done some googling. You could try this method:

http://developersmind.com/2010/06/12/preventing-wordpress-from-checking-for-updates-for-a-plugin/?replytocom=81

于 2012-11-13T10:19:07.777 回答