Add following code into your specific plugin file to disable update notification,
Have Fun!
//Filter to remove theme update notification.
add_filter('site_transient_update_themes', 'remove_theme_update_notification');
function remove_theme_update_notification($value)
{
unset($value->response[ basename(__DIR__) ]);
return $value;
}
Have Fun!
No comments:
Post a Comment