Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. add_action( "propertyhive_property_imported_expert_agent_xml", 'use_advert2_as_summary', 10, 2 );
  2. function use_advert2_as_summary($post_id, $property)
  3. {
  4. if ( isset($property->advert2) && (string)$property->advert2 != '' )
  5. {
  6. $my_post = array(
  7. 'ID' => $post_id,
  8. 'post_excerpt' => (string)$property->advert2,
  9. );
  10.  
  11. // Update the post into the database
  12. $post_id = wp_update_post( $my_post );
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement