WP_Links_List_Table::column_url( object $link )

Handles the link URL 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_url( $link ) {
	$short_url = url_shorten( $link->link_url );
	echo "<a href='$link->link_url'>$short_url</a>";
}


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.