WP_Links_List_Table::column_visible( object $link )

Handles the link visibility column output.


Description Description


Parameters Parameters

$link

(object) (Required) The current link object.


Top ↑

Source Source

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

Top ↑

Changelog Changelog

Changelog
Version Description
4.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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