WP_Terms_List_Table::column_description()publicWP 1.0

Method of the class: WP_Terms_List_Table{}

No Hooks.

Return

String.

Usage

$WP_Terms_List_Table = new WP_Terms_List_Table();
$WP_Terms_List_Table->column_description( $tag );
$tag(WP_Term) (required)
Term object.

WP_Terms_List_Table::column_description() code WP 6.5.2

public function column_description( $tag ) {
	if ( $tag->description ) {
		return $tag->description;
	} else {
		return '<span aria-hidden="true">&#8212;</span><span class="screen-reader-text">' .
			/* translators: Hidden accessibility text. */
			__( 'No description' ) .
		'</span>';
	}
}