プラグインが自動的に更新されないようにするにはどうすればよいですか?


16

サイト上のすべてのプラグインが自動更新を受信できるようにするオプトインフィルターがあります。

add_filter( 'auto_update_plugin', '__return_true' );

この機能は気に入っていますが、すべてのプラグインが自動的に更新されるのは望ましくありません。手動で実行したいプラグインを除外しながら、一部のプラグインを自動的に更新できるようにするにはどうすればよいですか?

回答:


20

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

小道具は、WP 3.8.2での変更を指摘するために@ WiseOwl9000に移動します


@kaiserコードの圧縮に関する素晴らしいアイデア。これを見てからしばらく経ちましたが、一見するとこれは論理を逆転させているように見えます。これをテストしましたか?自動更新されるのは配列内のアイテムのみになり、他のすべてのアイテムは除外されるようです。
デビッド14年

デビッド、あなたは完全に正しかった:修正して+1した
kaiser

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

$ pluginオブジェクトには次のものがあります。

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
)

私はあなたの答えが好きですが、さらに読むためにそれをサポートするためのドキュメントを追加できれば素晴らしいと思います。ありがとう
ピーター・グーセン14

私はプラグインの更新を制御するコーデックスで見つけることができる唯一の参照はここにある:codex.wordpress.org/... 私が代わりに渡された文字列のオブジェクトへの変更をサポートするための変更ログには何も見つけることができませんでした。
WiseOwl9000 14

変更に対するアカウントの回答を編集/更新しました。:ここではあなたが探していたのチェンジだcore.trac.wordpress.org/changeset/27905
デヴィッド・
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.