Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/6fad4c963a94aa558ee170347f611587 to your computer and use it in GitHub Desktop.
Save propertyhive/6fad4c963a94aa558ee170347f611587 to your computer and use it in GitHub Desktop.
add_filter( 'houzez_property_feed_xml_mapped_field_value', 'only_content_on_first_import', 10, 5 );
function only_content_on_first_import($content, $property, $field, $import_id, $post_id = '')
{
if ( $field != 'post_content' )
{
return $content;
}
if ( empty($post_id))
{
return $content;
}
$post = get_post( $post_id );
return $post->post_contents;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment