Guest User

Untitled

a guest
Feb 18th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function edit_term( $term_id, $tt_id, $taxonomy ) {
  2. global $wpdb;
  3.  
  4. $term = get_term( $term_id, $taxonomy );
  5. $slug = FWP()->helper->safe_value( $term->slug ); // MD5 Hebrew
  6.  
  7. $wpdb->query( $wpdb->prepare( "
  8. UPDATE {$wpdb->prefix}facetwp_index
  9. SET facet_value = %s, facet_display_value = %s
  10. WHERE facet_source = %s AND term_id = %d",
  11. $slug, $term->name, "tax/$taxonomy", $term_id
  12. ) );
  13. }
Add Comment
Please, Sign In to add comment