ফাংশন.এফপি-তে প্রশ্ন থেকে কোডটি ব্যবহার না করে এর সাথে এটি প্রতিস্থাপন করুন:
/**
* 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 );
ডাব্লুপি ৩.৮.২ এর পরিবর্তিত পরিবর্তনগুলি নির্দেশ করার জন্য প্রপসগুলি @ ওয়াইজ ওয়াল ৯০০০ এ যান