WP_Terms_List_Table::column_links( WP_Term $tag )


Description Description


Parameters Parameters

$tag

(WP_Term) (Required) Term object.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: wp-admin/includes/class-wp-terms-list-table.php

	public function column_links( $tag ) {
		$count = number_format_i18n( $tag->count );
		if ( $count ) {
			$count = "<a href='link-manager.php?cat_id=$tag->term_id'>$count</a>";
		}
		return $count;
	}


Top ↑

User Contributed Notes User Contributed Notes

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