Guest User

Untitled

a guest
May 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_action( 'propertyhive_property_imported_jet', 'use_ref_as_slug', 10, 2);
  2. function use_ref_as_slug( $post_id, $property )
  3. {
  4. $my_post = array(
  5. 'ID' => $post_id,
  6. 'post_name' => sanitize_title((string)$property->ID),
  7. );
  8.  
  9. // Update the post into the database
  10. wp_update_post( $my_post );
  11. }
Add Comment
Please, Sign In to add comment