Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/75c59a02946717cc7cfd0543177f0b96 to your computer and use it in GitHub Desktop.
Save propertyhive/75c59a02946717cc7cfd0543177f0b96 to your computer and use it in GitHub Desktop.
add_action( "propertyhive_property_imported_blm", 'set_inv_dept', 10, 2 );
function set_inv_dept($post_id, $property)
{
$investment = false;
for ( $i = 1; $i <= 10; ++$i )
{
if (
isset($property['FEATURE' . $i]) &&
strpos( strtolower(trim($property['FEATURE' . $i])), 'investment' ) !== FALSE
)
{
$investment = true;
}
}
if ( $investment == true )
{
update_post_meta( $post_id, '_department', 'investment' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment