Last active
May 20, 2017 00:33
-
-
Save mandiwise/1409fe8a5372616828be to your computer and use it in GitHub Desktop.
Using gform_field_value_{param}
This file contains hidden or 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
function my_city_population_function( $value ){ | |
return 'Vancouver'; | |
} | |
add_filter( 'gform_field_value_my_city', 'my_city_population_function' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment