WP_Links_List_Table::column_name( object $link )

Handles the link name column output.


Parameters

$link object Required
The current link object.

Top ↑

Source

File: wp-admin/includes/class-wp-links-list-table.php. View all references

public function column_name( $link ) {
	$edit_link = get_edit_bookmark_link( $link );
	printf(
		'<strong><a class="row-title" href="%s" aria-label="%s">%s</a></strong>',
		$edit_link,
		/* translators: %s: Link name. */
		esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $link->link_name ) ),
		$link->link_name
	);
}


Top ↑

Changelog

Changelog
Version Description
4.3.0 Introduced.

Top ↑

User Contributed Notes

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