post_column_taxonomy_links

post_column_taxonomy_links

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('post_column_taxonomy_links') is found 1 times:

  • /wp-admin/includes/class-wp-posts-list-table.php line 1344
    				 * @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">&#8212;</span><span class="screen-reader-text">' . $taxonomy_object->labels->no_terms . '</span>';
    			}
    			return;