मैं स्वचालित रूप से अपडेट होने से प्लगइन्स को कैसे बाहर करूं?


16

एक ऑप्ट-इन फ़िल्टर है जो मेरी साइट के सभी प्लग-इन को स्वचालित अपडेट प्राप्त करने की अनुमति देता है:

add_filter( 'auto_update_plugin', '__return_true' );

मुझे यह सुविधा पसंद है, लेकिन मैं नहीं चाहता कि मेरे सभी प्लगइन्स अपने आप अपडेट हो जाएं। मैं कुछ प्लगइन्स को स्वचालित रूप से अपडेट करने की अनुमति कैसे दे सकता हूं, जबकि मैं उन्हें मैन्युअल रूप से करना चाहता हूं?

जवाबों:


20

फ़ंक्शन से प्रश्न में कोड से कोड का उपयोग करने के बजाय। इसे इसके साथ बदलें:

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

इस कोड को थीम और कोर अपडेट को भी कस्टमाइज़ करने के लिए आसानी से बनाया जा सकता है।

वर्डप्रेस 3.8.2 ( 27905 ) में प्लगइन और थीम अपडेट आँकड़े जोड़े गए थे । उपरोक्त फ़ंक्शन प्लगइन्स की पहचान करने के लिए स्लग का उपयोग करता है, लेकिन आप किसी भी वस्तु की जानकारी ($ आइटम में) का उपयोग कर सकते हैं:

[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 के साथ परिवर्तन को इंगित करने के लिए Props @ WiseOwl9000 पर जाते हैं


@kaiser कोड को संघनित करने के साथ अच्छा विचार है। जब से मैंने इसे देखा है, तब से कुछ देर हो गई है, लेकिन पहली नज़र में ऐसा लग रहा है कि यह तर्क को उलट देता है। क्या आपने यह परीक्षण किया? ऐसा प्रतीत होता है कि सरणी में आइटम अब केवल वही हैं जो ऑटो-अपडेट किए जाएंगे, और बाकी सब को बाहर रखा जाएगा।
डेविड

डेविड, आप पूरी तरह से सही थे: फिक्स्ड और + 1ed
kaiser

3

वर्डप्रेस 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/… मैं किसी भी परिवर्तन लॉग में एक स्ट्रिंग को पारित करने के बजाय किसी वस्तु में परिवर्तन का समर्थन करने के लिए कुछ भी नहीं पा सकता था।
वाइजऑवल

मैंने परिवर्तन के लिए अपने उत्तर को संपादित / अपडेट किया है। यहां आप जो बदलाव देख रहे हैं, वह है: core.trac.wordpress.org/changeset/27905
डेविड
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.