Uses
Uses | Description |
---|---|
wp-includes/l10n.php: _e() | Display translated text. |
Handles the link visibility column output.
(object) (Required) The current link object.
File: wp-admin/includes/class-wp-links-list-table.php
public function column_visible( $link ) { if ( 'Y' === $link->link_visible ) { _e( 'Yes' ); } else { _e( 'No' ); } }
Version | Description |
---|---|
4.3.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_links_list_table/column_visible