WP_Links_List_Table::get_columns(): array


Return

array


Top ↑

Source

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

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' ),
	);
}


Top ↑

User Contributed Notes

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