Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function delete_empty_tags(){
  2. $tags = get_tags( array('number' => 0,'hide_empty' => false));
  3. foreach ( $tags as $tag ) {
  4. $tag_count = $tag->count;
  5. if ($tag_count < 1 ){
  6. wp_delete_term( $tag->term_id, 'post_tag' );
  7. }
  8. }
  9. }
  10. add_action( 'wp_head', 'delete_empty_tags' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement