Filters the action links displayed for each comment in the Comments list table.
$actionsstring[]$commentWP_Commentwp-admin/includes/class-wp-comments-list-table.php:864WP_Comments_List_Table::handle_row_actions()wp-admin/includes/dashboard.php:806_wp_dashboard_recent_comments_row() * * @param string[] $actions An array of comment actions. Default actions include: * 'Approve', 'Unapprove', 'Edit', 'Reply', 'Spam', * 'Delete', and 'Trash'. * @param WP_Comment $comment The comment object. */ $actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment ); $always_visible = false; $mode = get_user_setting( 'posts_list_mode', 'list' ); if ( 'excerpt' === $mode ) {Introduced in 2.6.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.