post_column_taxonomy_links

post_column_taxonomy_links

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('post_column_taxonomy_links') is found 1 times:

  • /wp-admin/includes/class-wp-posts-list-table.php line 1349
    1345
    1346
    1347
    1348
    1349
    1350
    1351
    1352
    1353
    1354
    1355
         * @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;