WP_Media_List_Table::handle_row_actions( WP_Post $item, string $column_name, string $primary )
Generates and displays row action links.
Parameters
- $item
-
(WP_Post) (Required) Attachment being acted upon.
- $column_name
-
(string) (Required) Current column name.
- $primary
-
(string) (Required) 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
File: wp-admin/includes/class-wp-media-list-table.php
protected function handle_row_actions( $item, $column_name, $primary ) { if ( $primary !== $column_name ) { return ''; } $att_title = _draft_or_post_title(); $actions = $this->_get_row_actions( $item, // WP_Post object for an attachment. $att_title ); return $this->row_actions( $actions ); }
Expand full source code Collapse full source code View on Trac View on GitHub
Changelog
Version | Description |
---|---|
5.9.0 | Renamed $post to $item to match parent class for PHP 8 named parameter support. |
4.3.0 | Introduced. |