Change tags url to search different site
There’s a filter in place specifically for tag links, can be found in source here. http://core.trac.wordpress.org/browser/tags/3.0.4/wp-includes/category-template.php#L780 It’s the first function you see on the above link, and it’s this line that provides a hookable filter. return apply_filters( ‘tag_link’, $taglink, $tag_id ); Here’s an example of hooking a function to that hook.. add_filter( ‘tag_link’, ‘new_tag_link’, 100 … Read more