WP_Links_List_Table::get_columns(): string[]

In this article

Return

string[] Array of column titles keyed by their column name.

Source

public function get_columns() {
	return array(
		'cb'         => '<input type="checkbox" />',
		'name'       => _x( 'Name', 'link name' ),
		'url'        => __( 'URL' ),
		'categories' => __( 'Categories' ),
		'rel'        => __( 'Relationship' ),
		'visible'    => __( 'Visible' ),
		'rating'     => __( 'Rating' ),
	);
}

User Contributed Notes

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