WP_Links_List_Table::column_url() – Handles the link URL column output.
You appear to be a bot. Output may be restricted
Description
Handles the link URL column output.
Usage
WP_Links_List_Table::column_url( $link );
Parameters
- $link
- ( object ) required – The current link object.
Returns
void
Source
File name: wordpress/wp-admin/includes/class-wp-links-list-table.php
Lines:
1 to 4 of 4
public function column_url( $link ) { $short_url = url_shorten( $link->link_url ); echo "<a href='$link->link_url'>$short_url</a>"; }