Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_column_taxonomy_links

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1306                     /**
1307                      * Filters the links in `$taxonomy` column of edit.php.
1308                      *
1309                      * @since 5.2.0
1310                      *
1311                      * @param string[]  $term_links Array of term editing links.
1312                      * @param string    $taxonomy   Taxonomy name.
1313                      * @param WP_Term[] $terms      Array of term objects appearing in the post row.
1314                      */
1315                     $term_links = apply_filters( 'post_column_taxonomy_links', $term_links, $taxonomy, $terms );
1316
1317                     echo implode( wp_get_list_item_separator(), $term_links );
1318                } else {
1319                     echo '<span aria-hidden="true">&#8212;</span><span class="screen-reader-text">' . $taxonomy_object->labels->no_terms . '</span>';
1320                }
1321                return;
1322           }
1323
1324           if ( is_post_type_hierarchical( $post->post_type ) ) {