Filters the primary link title for the 'WordPress Events and News' dashboard widget.
__( 'WordPress Blog'
Sortie :
@param string $title Title attribute for the widget's primary link.
// Modifier la valeur avec le filtre 'dashboard_primary_title'
add_filter('dashboard_primary_title', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(__( 'WordPress Blog') {
// Modifier la valeur
return __( 'WordPress Blog';
}
Chargement des actualités...