Jack London
New member
- Joined
- Jul 9, 2012
- Messages
- 386
- Points
- 0
I can get a list of wordpress tags that I created in wp admin. Now I want set a order for each tag
Here's my code
Anyone knows ways how I can order tags into groups that I want to show on site?
please share your solutions
Here's my code
Code:
<?php
$tags = get_tags();
foreach ( $tags as $tag ) {
$tag_link = get_tag_link( $tag->term_id);
$mytags .= "<a href='{$tag_link}' title='{$tag->name}' class='{$tag->slug}'>";
$mytags .= "{$tag->name}</a>";
}
echo $mytags;
?>
please share your solutions