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
1198                     /**
1199                      * Filters the links in `$taxonomy` column of edit.php.
1200                      *
1201                      * @since 5.2.0
1202                      *
1203                      * @param array  $term_links List of links to edit.php, filtered by the taxonomy term.
1204                      * @param string $taxonomy   Taxonomy name.
1205                      * @param array  $terms      Array of terms appearing in the post row.
1206                      */
1207                     $term_links = apply_filters( 'post_column_taxonomy_links', $term_links, $taxonomy, $terms );
1208
1209                     /* translators: used between list items, there is a space after the comma */
1210                     echo join( __( ', ' ), $term_links );
1211                } else {
1212                     echo '<span aria-hidden="true">&#8212;</span><span class="screen-reader-text">' . $taxonomy_object->labels->no_terms . '</span>';
1213                }
1214                return;
1215           }
1216