Guest User

Untitled

a guest
Apr 26th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. if ( $_POST['delete'] ) {
  2. $term = get_term_by('term_id', $_POST['term_id'], $_GET['taxonomy']);
  3. wp_delete_term( $term->term_id, $_GET['taxonomy']);
  4. $term = null;
  5. $_GET['VIEW'] = 'tag_editor';
  6. }
  7. else {
  8. $term = get_term_by('term_id', $_POST['term_id'], $_GET['taxonomy']);
  9. wp_update_term( $term->term_id, $_GET['taxonomy'], array('name' => $_POST['name'], 'slug' => $_POST['slug']));
  10. $term = get_term_by('slug', $_REQUEST['slug'], $_GET['taxonomy']);
  11. }
  12. } else {
  13. if ( $_POST['name'] ) {
  14. $term = wp_insert_term($_POST['name'], $_GET['taxonomy']);
  15. $term = get_term($term['term_id'], $_GET['taxonomy']);
  16. }
Add Comment
Please, Sign In to add comment