<value>
The Contact Form 7 - City Field Extension value shortcode.
Usage
- // assign value
- $value = 'dynamic_tag';
- // basic usage
- echo do_shortcode("[$value]");
- // assign value
- $value = 'dynamic_tag';
- // variable usage
- $result = do_shortcode("[$value]");
- echo $result;
Defined (1)
The shortcode is defined in the following location(s).
- /contact-form-7-city-field-extension.php
- $value = stripslashes_deep( $_POST[$name] );
- } else {
- $value = isset( $values[0] ) ? $values[0] : '';
- }
- $scval = do_shortcode('['.$value.']');
- if($scval != '['.$value.']') $value = $scval;
- $readonly = '';
- if(in_array('uneditable', $options)) {
- $readonly = 'readonly="readonly"';