Make WordPress Core

Changeset 5568


Ignore:
Timestamp:
05/28/2007 02:07:59 AM (16 years ago)
Author:
rob1n
Message:

Add rel="tag" to tag links. fixes #4159

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/category-template.php

    r5549 r5568  
    423423    $tag_list = $before;
    424424    foreach ( $tags as $tag )
    425         $tag_links[] = '<a href="' . get_tag_link($tag->term_id) . '">' . $tag->slug . '</a>';
     425        $tag_links[] = '<a href="' . get_tag_link($tag->term_id) . '" rel="tag">' . $tag->slug . '</a>';
    426426
    427427    $tag_links = join( $sep, $tag_links );
Note: See TracChangeset for help on using the changeset viewer.