Log in on your server and find folder: /wp-includes/ , “the_tags” located in file category-template.php about line 840
The string must looks like:
{CODE type:php;}
$term_links[] = ‘<a href=”‘ . $link . ‘” rel=”tag”>’ . $term->name . ‘</a>’;
{/CODE}
Now you can add any HTML code for you tags links. For example add < span > inside tag < a >
{CODE type:php;}
$term_links[] = ‘<a href=”‘ . $link . ‘” rel=”tag”><span>’ . $term->name . ‘</span></a>’;
{/CODE}
How to create stretch buttons view my last lesson.
I hope this small lesson will help you. 🙂
Tags: find tags, tags, WP