Last active
March 26, 2025 16:47
-
-
Save g-maclean/6c7fcdbf1324dbe502e4d41cd43c8b3b to your computer and use it in GitHub Desktop.
PropertyHive - Use different description language
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action( 'propertyhive_property_imported_kyero_xml', 'use_nl_description', 10, 2 ); | |
| function use_nl_description( $post_id, $property ) { | |
| $desc = (string)$property->desc->nl; | |
| $post = array( | |
| 'ID' => $post_id, | |
| 'post_excerpt' => $desc, | |
| ); | |
| wp_update_post( $post ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment