Created
November 18, 2024 21:38
-
-
Save propertyhive/5cb7300ce0f0f54d7fee3f81eb209c65 to your computer and use it in GitHub Desktop.
Custom utilities
This file contains 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_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