BEGIN:VCALENDAR
VERSION:2.0
METHOD:PUBLISH
PRODID:- PBCS IT-News //NONSGML Events //EN
CALSCALE:GREGORIAN
X-WR-CALNAME:ICAL-BLOG
BEGIN:VEVENT
UID:d171b2b8-cfab-45cd-b84f-a975a146284a
DTSTAMP:20260803T032918Z
CREATED:20260803T032918Z
SUMMARY:WordPress Plugin-Updates einzeln deaktivieren
DESCRIPTION:https://wp.pbcs.de/wordpress-plugin-updates-einzeln-deaktivieren/ - Artikel vom: Mi.\, 9. März 2022\, 21:11:02 - Solange ein Plugin noch in der Repository angeboten wird\, kann man es einfach aktualisieren\, indem man die "Automatische Updates" Funktion in der Pluginliste einschaltet. Ist das Plugin auf wordpress.org deprecated oder deaktiviert\, bleibt die Einstellung auf "automatisch"\, man kann Sie in der Pluginliste aber nicht mehr ausschalten. Zwar kommen solange das Plugin "tot" ist\, keine Updates\, es gibt aber Plugins\, die später wieder auferstehen. Das folgende PHP-Code Snippet hilft\, Plugins-Auto-Updates fallweilse aus- oder einzuschalten. Lässt sich übrigens auch für Themes nutzen.\n \nfunction change_auto_update( $name\, $type = 'plugin'\, $enable = true ) { if ( 'theme' === $type ) { $key = 'auto_update_themes'\; } else { $key = 'auto_update_plugins'\; } $auto_update_settings = get_site_option( $key\, array() )\; if ( $enable ) { if ( in_array( $name\, $auto_update_settings\, true ) ) { return false\; } $auto_update_settings[] = $name\; } else { if ( ! in_array( $name\, $auto_update_settings\, true ) ) { return false\; } unset( $auto_update_settings[ array_search( $name\, $auto_update_settings\, true ) ] )\; } return update_site_option( $key\, array_unique( $auto_update_settings ) )\;\n}\nchange_auto_update('cybersyn/cybersyn.php'\,'plugin'\,false)\;
LOCATION:https://wp.pbcs.de
CATEGORIES:Gelbe Kategorie
TRANSP:TRANSPARENT
X-MICROSOFT-CDO-BUSYSTATUS:FREE
SEQUENCE:0
CLASS:PUBLIC
PRIORITY:1
DTSTART:20260803T070000Z
DTEND:20260803T080000Z
BEGIN:VALARM
TRIGGER:-PT30M
ACTION:DISPLAY
DESCRIPTION:Reminder for WordPress Plugin-Updates einzeln deaktivieren
END:VALARM
END:VEVENT
END:VCALENDAR
