Skip to content

Instantly share code, notes, and snippets.

@g-maclean
Last active March 26, 2025 16:47
Show Gist options
  • Select an option

  • Save g-maclean/6c7fcdbf1324dbe502e4d41cd43c8b3b to your computer and use it in GitHub Desktop.

Select an option

Save g-maclean/6c7fcdbf1324dbe502e4d41cd43c8b3b to your computer and use it in GitHub Desktop.
PropertyHive - Use different description language
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