category_link
Filters the category link.
Description
Parameters (2)
- 0. $termlink (string)
- Category link URL.
- 1. $term_term_id (int)
- The term term id.
Usage
- To run the hook, copy the example below.
- $termlink = apply_filters( 'category_link', $termlink, $term_term_id );
- if ( !empty( $termlink ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the category_link callback
- function filter_category_link( $termlink, $term_term_id ) {
- // make filter magic happen here...
- return $termlink;
- };
- // add the filter
- add_filter( 'category_link', 'filter_category_link', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'category_link', 'filter_category_link', 10, 2 );
Defined (1)
The filter is defined in the following location(s).
- /wp-includes/taxonomy.php
- $termlink = apply_filters( 'category_link', $termlink, $term->term_id );