Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active December 2, 2023 18:48
Show Gist options
  • Save softiconic/d229903d7ec6ceb06fd6dc6c10b3bb64 to your computer and use it in GitHub Desktop.
Save softiconic/d229903d7ec6ceb06fd6dc6c10b3bb64 to your computer and use it in GitHub Desktop.
Disable updates for a specific plugin.
function filter_plugin_updates( $value ) {
unset( $value->response['elementor-pro/elementor-pro.php'] );
return $value;
}
add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment