/**
* Filters the links in `$taxonomy` column of edit.php.
*
* @since 5.2.0
*
* @param string[] $term_links Array of term editing links.
* @param string $taxonomy Taxonomy name.
* @param WP_Term[] $terms Array of term objects appearing in the post row.
*/
$term_links =
apply_filters( 'post_column_taxonomy_links',
$term_links,
$taxonomy,
$terms );
echo implode( wp_get_list_item_separator(),
$term_links );
} else { echo '<span aria-hidden="true">—</span><span class="screen-reader-text">' .
$taxonomy_object->labels->no_terms . '</span>';
} return;
} if ( is_post_type_hierarchical( $post->post_type
) ) { /**
* Fires in each custom column on the Posts list table.
*
* This hook only fires if the current post type is hierarchical,
* such as pages.
*
* @since 2.5.0
*
* @param string $column_name The name of the column to display.
* @param int $post_id The current post ID.
*/