Revision: 24646
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at March 7, 2010 14:55 by ignacio
Initial Code
<?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> '; } } ?>
Initial URL
Initial Description
There we go
Initial Title
Get all tags without HTML markup (no more tag clouds)
Initial Tags
wordpress
Initial Language
PHP