Uses
| Uses | Description |
|---|---|
| wp-includes/l10n.php: _x() | Retrieve translated string with gettext context. |
| wp-includes/l10n.php: __() | Retrieve the translation of $text. |
(array)
File: wp-admin/includes/class-wp-links-list-table.php
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' ),
);
}
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_links_list_table/get_columns