29 January 2014

Disable theme update notification for a specific theme

Add following code into your specific plugin file to disable update notification,

//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