Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: category_link

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
3897           /**
3898            * Filters the category link.
3899            *
3900            * @since 1.5.0
3901            * @deprecated 2.5.0 Use 'term_link' instead.
3902            *
3903            * @param string $termlink Category link URL.
3904            * @param int    $term_id  Term ID.
3905            */
3906           $termlink = apply_filters( 'category_link', $termlink, $term->term_id );
3907      }
3908
3909      /**
3910       * Filters the term link.
3911       *
3912       * @since 2.5.0
3913       *
3914       * @param string $termlink Term link URL.
3915       * @param object $term     Term object.