WP_Media_List_Table::handle_row_actions( WP_Post $item, string $column_name, string $primary ): string

In this article

Generates and displays row action links.

Parameters

$itemWP_Postrequired
Attachment being acted upon.
$column_namestringrequired
Current column name.
$primarystringrequired
Primary column name.

Return

string Row actions output for media attachments, or an empty string if the current column is not the primary column.

Source

protected function handle_row_actions( $item, $column_name, $primary ) {
	if ( $primary !== $column_name ) {
		return '';
	}

	// Restores the more descriptive, specific name for use within this method.
	$post = $item;

	$att_title = _draft_or_post_title();
	$actions   = $this->_get_row_actions( $post, $att_title );

	return $this->row_actions( $actions );
}

Changelog

VersionDescription
5.9.0Renamed $post to $item to match parent class for PHP 8 named parameter support.
4.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.