Guest User

Untitled

a guest
Mar 13th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. // taxonomy : relacionados
  3. $todelete = array('relacionados');
  4.  
  5. foreach ( $todelete as $slug ) {
  6. $term = get_term_by('slug', $slug, 'post_tag');
  7. if ( ! is_wp_error($term) && ! empty($term) )
  8. wp_delete_term( $term->term_id, 'post_tag');
  9. }
  10. ?>
Add Comment
Please, Sign In to add comment