Filters the HTML of the auto-updates setting for each plugin in the Plugins list table.
$html, $plugin_file, $plugin_data
Sortie :
@param string $html The HTML of the plugin's auto-update column content, @param string $plugin_file Path to the plugin file relative to the plugins directory. @param array $plugin_data An array of plugin data. See get_plugin_data()
// Modifier la valeur avec le filtre 'plugin_auto_update_setting_html'
add_filter('plugin_auto_update_setting_html', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($html) {
// Modifier la valeur
return $html;
}
Chargement des actualités...