WP_Links_List_Table::column_visible( object $link )

In this article

Handles the link visibility column output.

Parameters

$linkobjectrequired
The current link object.

Source

public function column_visible( $link ) {
	if ( 'Y' === $link->link_visible ) {
		_e( 'Yes' );
	} else {
		_e( 'No' );
	}
}

Changelog

VersionDescription
4.3.0Introduced.

User Contributed Notes

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