Як виключити плагіни з автоматичного оновлення?


16

Є фільтр для ввімкнення, який дозволяє всім плагінам на моєму веб-сайті отримувати автоматичні оновлення:

add_filter( 'auto_update_plugin', '__return_true' );

Мені подобається ця функція, але я не хочу, щоб усі мої плагіни оновлювалися автоматично. Як я можу дозволити автоматичні оновлення деяких плагінів, виключаючи ті, які я хочу зробити вручну?

Відповіді:


20

Замість використання коду з питання у function.php замініть його таким:

/**
 * 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 );

Цей код можна легко змінити, щоб також настроїти тематичні та основні оновлення.

Статистика оновлень плагінів і тем додана в Wordpress 3.8.2 ( 27905 ). Вищенаведена функція використовує слуг для ідентифікації плагінів, але ви можете використовувати будь-яку інформацію про об'єкт (у $ 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

Для Wordpress 3.8.1 і нижче використовуйте цю функцію замість цього:

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 );

Реквізити переходять до @ WiseOwl9000, щоб вказати на зміну за допомогою WP 3.8.2


@kaiser Приємна ідея зі згущуванням коду. Минуло давно, як я на це подивився, але на перший погляд схоже, що це перевершує логіку. Ви тестували це? Здається, що елементи в масиві тепер є єдиними, які отримали б автоматичне оновлення, а все інше було б виключено.
Девід

Девіде, ти був абсолютно правий: Фіксований та + 1ed
кайзер

3

Зауважте, що в Wordpress 3.8.2 тип елемента плагіна, переданого цій функції, змінився, і тепер він є об'єктом.

/**
 * @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  */);

Об'єкт $ плагін має наступне:

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
)

Мені подобається ваша відповідь, але було б чудово, якщо ви можете додати документацію, яка підтверджує це для подальшого читання. Спасибі
Пітер Гусен

Єдине посилання, яке я міг знайти в кодексі, щоб керувати оновленнями плагінів, тут: codex.wordpress.org/… Я не зміг знайти нічого в журналах змін для підтримки зміни об'єкта, а не для передачі рядка.
WiseOwl9000

Я відредагував / оновив свою відповідь, щоб повідомити про зміну. Ось набір
Девід,
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.