Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. add_action( 'propertyhive_property_imported_blm', 'amend_property_slug', 10, 2);
  2. function amend_property_slug( $post_id, $property )
  3. {
  4. $slug = 'property-details-' . $property['AGENT_REF'];
  5.  
  6. $my_post = array(
  7. 'ID' => $post_id,
  8. 'post_name' => sanitize_title($slug),
  9. );
  10.  
  11. // Update the post into the database
  12. wp_update_post( $my_post );
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement