previous_comments_link_attributes

FILTER wp-includes\link-template.php (ligne 3227) github
Filters the anchor tag attributes for the previous comments page link.

Paramètres

Entrée :
''
Sortie :
@param string $attributes Attributes for the anchor tag.

Utilisation

// Modifier la valeur avec le filtre 'previous_comments_link_attributes'
add_filter('previous_comments_link_attributes', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre('') {
    // Modifier la valeur
    return '';
}

Actualités

Chargement des actualités...