Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created November 18, 2024 21:38
Show Gist options
  • Save propertyhive/5cb7300ce0f0f54d7fee3f81eb209c65 to your computer and use it in GitHub Desktop.
Save propertyhive/5cb7300ce0f0f54d7fee3f81eb209c65 to your computer and use it in GitHub Desktop.
Custom utilities
add_filter( 'propertyhive_electricity_types', 'custom_elec_types' );
function custom_elec_types($types)
{
$types['my_custom_type_1'] = 'My Custom Type 1';
$types['my_custom_type_2'] = 'My Custom Type 2';
return $types;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment