|
How to create button tags in WordPress |
|
Tuesday, 14 September 2010 19:33 |
How to create button tags links in WordPress
The first thing is how to find "the_tags" in your WordPress files?

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:
$term_links[] = '<a href="' . $link . '" rel="tag">' . $term->name . '</a>';
Now you can add any HTML code for you tags links. For example add < span > inside tag < a >
$term_links[] = '<a href="' . $link . '" rel="tag"><span>' . $term->name . '</span></a>';
How to create stretch buttons view my last lesson.
I hope this small lesson will help you. :)
|
|
Last Updated on Tuesday, 14 September 2010 19:51 |