Guest User

Untitled

a guest
Dec 12th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. wp_set_post_tags($this->id, $_POST['tags']);
  2.  
  3. $tags = get_the_tags(get_the_ID());
  4. if(count($tags) > 0){
  5. foreach($tags as $tag){
  6. echo $tag->name."(".$tag->count.");
  7. }
  8. }
Add Comment
Please, Sign In to add comment