जवाबों:
इस संदेश W3_Total_Cache->in_plugin_update_message()
को "in_plugin_update_message-$file"
अंदर झुकाकर बनाया गया है wp_plugin_update_row()
।
यह रीडग्म को पार्स करने और चैंज से जानकारी प्रदर्शित करने के लिए कुछ उपद्रव करता है, लेकिन कुल मिलाकर आप कुछ सामानों को किसी अन्य हुक के साथ प्रतिध्वनित कर सकते हैं।
कार्रवाई हुक नाम स्पष्ट करने के लिए:
global $pagenow;
if ( 'plugins.php' === $pagenow )
{
// Better update message
$file = basename( __FILE__ );
$folder = basename( dirname( __FILE__ ) );
$hook = "in_plugin_update_message-{$folder}/{$file}";
add_action( $hook, 'your_update_message_cb', 20, 2 );
}
फ़ंक्शन में स्वयं दो $variables
संलग्न हैं: $plugins_data
और $r
, जो आपके प्लगइन द्वारा एक्सेस किया जा सकता है।
/**
* Displays an update message for plugin list screens.
* Shows only the version updates from the current until the newest version
*
* @param (array) $plugin_data
* @param (object) $r
* @return (string) $output
*/
function your_update_message_cb( $plugin_data, $r )
{
// readme contents
$data = file_get_contents( 'http://plugins.trac.wordpress.org/browser/YOUR_PLUGIN_FOLDER_NAME_IN_THE_OFFICIAL_REPO/trunk/readme.txt?format=txt' );
// assuming you've got a Changelog section
// @example == Changelog ==
$changelog = stristr( $data, '== Changelog ==' );
// assuming you've got a Screenshots section
// @example == Screenshots ==
$changelog = stristr( $changelog, '== Screenshots ==', true );
// only return for the current & later versions
$curr_ver = get_plugin_data('Version');
// assuming you use "= v" to prepend your version numbers
// @example = v0.2.1 =
$changelog = stristr( $changelog, "= v{$curr_ver}" );
// uncomment the next line to var_export $var contents for dev:
# echo '<pre>'.var_export( $plugin_data, false ).'<br />'.var_export( $r, false ).'</pre>';
// echo stuff....
$output = 'whatever you want to do';
return print $output;
}
पाद लेख:
यह दृष्टिकोण आंतरिक लिंक चेकर प्लगइन में पाया जा सकता है ।
इसके अलावा:
plugin_basename(__FILE__)
ऊपर उन दो लाइनों के बजाय इस्तेमाल किया जा सकता है। यह भी जांचना कि क्या वर्तमान पृष्ठ प्लगइन पृष्ठ है, वास्तव में आवश्यक नहीं है क्योंकि फ़ंक्शन केवल उस पृष्ठ द्वारा वैसे भी कहा जाएगा। (बहुत मामूली) लाभ अभी भी है कि आपके पास एक और कॉलबैक संलग्न नहीं है। जैसा कि यह उत्तर काफी पुराना है, आप करेंगे, जबकि यह दृष्टिकोण अभी भी एक समस्या के बिना काम करता है, अब द्वारा लौटाए गए ऑब्जेक्ट के खिलाफ जांच करें get_current_screen()
।