Come escludo i plugin dall'aggiornamento automatico?


16

Esiste un filtro opt-in che consente a tutti i plugin sul mio sito di ricevere aggiornamenti automatici:

add_filter( 'auto_update_plugin', '__return_true' );

Mi piace questa funzione, ma non voglio che tutti i miei plugin vengano aggiornati automaticamente. Come posso consentire l'aggiornamento automatico di alcuni plugin, escludendo quelli che voglio fare manualmente?

Risposte:


20

Invece di usare il codice dalla domanda in Functions.php, sostituiscilo con questo:

/**
 * Prevent certain plugins from receiving automatic updates, and auto-update the rest.
 *
 * To auto-update certain plugins and exclude the rest, simply remove the "!" operator
 * from the function.
 *
 * Also, by using the 'auto_update_theme' or 'auto_update_core' filter instead, certain
 * themes or Wordpress versions can be included or excluded from updates.
 *
 * auto_update_$type filter: applied on line 1772 of /wp-admin/includes/class-wp-upgrader.php
 *
 * @since 3.8.2
 *
 * @param bool   $update Whether to update (not used for plugins)
 * @param object $item   The plugin's info
 */
function exclude_plugins_from_auto_update( $update, $item ) {
    return ( ! in_array( $item->slug, array(
        'akismet',
        'buddypress',
    ) ) );
}
add_filter( 'auto_update_plugin', 'exclude_plugins_from_auto_update', 10, 2 );

Questo codice può essere facilmente modificato per personalizzare anche gli aggiornamenti di temi e core.

Le statistiche di aggiornamento di plugin e temi sono state aggiunte in Wordpress 3.8.2 ( 27905 ). La funzione sopra usa lo slug per identificare i plugin, ma puoi usare qualsiasi informazione dell'oggetto (in $ item):

[id] => 15
[slug] => akismet
[plugin] => akismet/akismet.php
[new_version] => 3.0.0
[url] => https://wordpress.org/plugins/akismet/
[package] => https://downloads.wordpress.org/plugin/akismet.3.0.0.zip

Per Wordpress 3.8.1 e precedenti, utilizzare invece questa funzione:

function exclude_plugins_from_auto_update( $update, $item ) {
    return ( ! in_array( $item, array(
        'akismet/akismet.php',
        'buddypress/bp-loader.php',
    ) ) );
}
add_filter( 'auto_update_plugin', 'exclude_plugins_from_auto_update', 10, 2 );

I puntelli vanno su @ WiseOwl9000 per sottolineare il cambiamento con WP 3.8.2


@kaiser Bella idea con la condensazione del codice. È passato un po 'di tempo da quando l'ho visto, ma a prima vista sembra che questo inverta la logica. Hai provato questo? Sembra che gli elementi nell'array siano ora gli unici ad essere aggiornati automaticamente e tutto il resto sarebbe escluso.
David,

David, avevi perfettamente ragione: Fixed e + 1ed
kaiser

3

Nota a partire da wordpress 3.8.2 il tipo di elemento del plugin passato a questa funzione è cambiato e ora è un oggetto.

/**
 * @package Plugin_Filter
 * @version 2.0
 */
/*
Plugin Name: Plugin Filter
Plugin URI: http://www.brideonline.com.au/
Description: Removes certain plugins from being updated. 
Author: Ben Wise
Version: 2.0
Author URI: https://github.com/WiseOwl9000
*/

/**
 * @param $update bool Ignore this it just is set to whether the plugin should be updated
 * @param $plugin object Indicates which plugin will be upgraded. Contains the directory name of the plugin followed by / followed by the filename containing the "Plugin Name:" parameters.  
 */
function filter_plugins_example($update, $plugin)
{
    $pluginsNotToUpdate[] = "phpbb-single-sign-on/connect-phpbb.php";
    // add more plugins to exclude by repeating the line above with new plugin folder / plugin file

    if (is_object($plugin))
    {
        $pluginName = $plugin->plugin;
    }
    else // compatible with earlier versions of wordpress
    {
        $pluginName = $plugin;
    }

    // Allow all plugins except the ones listed above to be updated
    if (!in_array(trim($pluginName),$pluginsNotToUpdate))
    {
        // error_log("plugin {$pluginName} is not in list allowing");
        return true; // return true to allow update to go ahead
    }

    // error_log("plugin {$pluginName} is in list trying to abort");
    return false;
}

// Now set that function up to execute when the admin_notices action is called
// Important priority should be higher to ensure our plugin gets the final say on whether the plugin can be updated or not.
// Priority 1 didn't work
add_filter( 'auto_update_plugin', 'filter_plugins_example' ,20  /* priority  */,2 /* argument count passed to filter function  */);

L'oggetto $ plugin ha il seguente:

stdClass Object
(
    [id] => 10696
    [slug] => phpbb-single-sign-on
    [plugin] => phpbb-single-sign-on/connect-phpbb.php
    [new_version] => 0.9
    [url] => https://wordpress.org/plugins/phpbb-single-sign-on/
    [package] => https://downloads.wordpress.org/plugin/phpbb-single-sign-on.zip
)

Mi piace la tua risposta, ma sarebbe fantastico se puoi aggiungere documentazione a supporto di quella per ulteriori letture. Grazie
Pieter Goosen il

L'unico riferimento che ho trovato nel codice per controllare gli aggiornamenti dei plugin è qui: codex.wordpress.org/… Non sono riuscito a trovare nulla nei registri delle modifiche per supportare la modifica di un oggetto invece che una stringa venga passata.
WiseOwl9000,

Ho modificato / aggiornato la mia risposta per tenere conto della modifica. Ecco il changeset che stavi cercando: core.trac.wordpress.org/changeset/27905
David
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.