mirror of
https://gh.wpcy.net/https://github.com/stingray82/uupd.git
synced 2026-07-14 18:21:23 +08:00
14 lines
381 B
Markdown
14 lines
381 B
Markdown
🔁 Enabling Automatic Updates (UUPD 2.0)
|
|
|
|
UUPD integrates with WordPress auto-updates exactly as before.
|
|
|
|
⚠️ Note (v2.0): Slug is still used here — WordPress controls this, not UUPD.
|
|
|
|
Example (Plugin):
|
|
|
|
add_filter( 'auto_update_plugin', function( $update, $item ) {
|
|
if ( $item->slug === 'your-plugin-slug' ) {
|
|
return true;
|
|
}
|
|
return $update;
|
|
}, 10, 2 );
|