advanced code snippet search
ignacio on 03/07/10
wordpress tags
03/07/10 02:55pm
There we go
<?php $tags = get_tags();if ($tags) {foreach ($tags as $tag) {echo '<p>Tag: <a href="' . get_tag_link( $tag->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $tag->name ) . '" ' . '>' . $tag->name.'</a> </p> ';}} ?>
Report this snippet Tweet
Comment:
You need to login to post a comment.