edit_comment_misc_actions

FILTER wp-admin\edit-form-comment.php (ligne 233) github
Filters miscellaneous actions for the edit comment form sidebar.

Paramètres

Entrée :
'', $comment
Sortie :
@param string     $html    Output HTML to display miscellaneous action.
@param WP_Comment $comment Current comment object.

Utilisation

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

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

Actualités

Chargement des actualités...