WP_Terms_List_Table::single_row( WP_Term $tag, int $level )
Parameters
- $tag
-
(Required) Term object.
- $level
-
(Required)
Source
File: wp-admin/includes/class-wp-terms-list-table.php
public function single_row( $tag, $level = 0 ) {
global $taxonomy;
$tag = sanitize_term( $tag, $taxonomy );
$this->level = $level;
echo '<tr id="tag-' . $tag->term_id . '">';
$this->single_row_columns( $tag );
echo '</tr>';
}