Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. $tags = get_tags();
  3. if ($tags) {
  4. foreach ($tags as $tag) {
  5. echo '<p>Tag: <a href="' . get_tag_link( $tag->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $tag->name ) . '" ' . '>' . $tag->name.'</a> </p> ';
  6. }
  7. }
  8. ?>
  9. <?php
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement