আমি কীভাবে প্লাগইনগুলি স্বয়ংক্রিয়ভাবে আপডেট হওয়া থেকে বাদ দেব?


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

ওয়ার্ডপ্রেস 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 );

ডাব্লুপি ৩.৮.২ এর পরিবর্তিত পরিবর্তনগুলি নির্দেশ করার জন্য প্রপসগুলি @ ওয়াইজ ওয়াল ৯০০০ এ যান


কোডটি ঘনীভূত করার জন্য @ কাইজার দুর্দান্ত ধারণা। আমি এটি দেখে কিছুক্ষণ হয়ে গেছে, তবে প্রথম নজরে দেখে মনে হচ্ছে এটি যুক্তিটিকে বিপরীত করে। আপনি এটি পরীক্ষা করেছেন? দেখা যাচ্ছে যে অ্যারের আইটেমগুলি এখন কেবলমাত্র অটো-আপডেট হওয়া হবে এবং অন্য সমস্ত কিছু বাদ দেওয়া হবে।
ডেভিড

ডেভিড, আপনি সম্পূর্ণরূপে ঠিক ছিলেন: স্থির এবং + 1ed
কায়সার

3

ওয়ার্ডপ্রেস ৩.৮.২ হিসাবে নোট করুন এই ফাংশনে পাস হওয়া প্লাগইন আইটেমের ধরণের পরিবর্তন হয়েছে এবং এটি এখন একটি অবজেক্ট।

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

আমি আপনার উত্তরটি পছন্দ করি, তবে এটি আরও ভাল হবে যদি আপনি আরও পড়ার জন্য সমর্থন করার জন্য ডকুমেন্টেশন যুক্ত করতে পারেন। ধন্যবাদ
পিটার গুজন

কোডেক্সে প্লাগইন আপডেটগুলি নিয়ন্ত্রণের জন্য আমি কেবলমাত্র রেফারেন্সটি এখানে পেয়েছি : কোডেক্স.ওয়ার্ডপ্রেস.আর / আমি স্ট্রিংয়ের পরিবর্তে কোনও অবজেক্টে পরিবর্তন সমর্থন করার জন্য কোনও পরিবর্তন লগগুলিতে কিছুই পাইনি।
ওয়াইজ ওয়াল 9000

আমি পরিবর্তনের জন্য অ্যাকাউন্টে আমার উত্তর সম্পাদনা / আপডেট করেছি। আপনি যে চেঞ্জটিটিটি খুঁজছিলেন তা এখানে: কোর.ট্রাক.ওয়ার্ডপ্রেস.আর.
ডেভিড
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.