Parameters
$tag
WP_Termrequired- Term object.
Source
public function column_description( $tag ) {
if ( $tag->description ) {
return $tag->description;
} else {
return '<span aria-hidden="true">—</span><span class="screen-reader-text">' .
/* translators: Hidden accessibility text. */
__( 'No description' ) .
'</span>';
}
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.