plugin_auto_update_setting_html

FILTER wp-admin\includes\class-wp-plugins-list-table.php (ligne 1375) github
Filters the HTML of the auto-updates setting for each plugin in the Plugins list table.

Paramètres

Entrée :
$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()

Utilisation

// 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;
}

Actualités

Chargement des actualités...