classes/fields/html.php 1 location
|
@@ 125-127 (lines=3) @@
|
| 122 |
|
$value = $embed->autoembed( $value ); |
| 123 |
|
} |
| 124 |
|
|
| 125 |
|
if ( 1 === (int) pods_v( static::$type . '_wptexturize', $options, 1 ) ) { |
| 126 |
|
$value = wptexturize( $value ); |
| 127 |
|
} |
| 128 |
|
|
| 129 |
|
if ( 1 === (int) pods_v( static::$type . '_convert_chars', $options, 1 ) ) { |
| 130 |
|
$value = convert_chars( $value ); |
classes/fields/paragraph.php 1 location
|
@@ 176-178 (lines=3) @@
|
| 173 |
|
$value = $embed->autoembed( $value ); |
| 174 |
|
} |
| 175 |
|
|
| 176 |
|
if ( 1 === (int) pods_v( static::$type . '_wptexturize', $options, 1 ) ) { |
| 177 |
|
$value = wptexturize( $value ); |
| 178 |
|
} |
| 179 |
|
|
| 180 |
|
if ( 1 === (int) pods_v( static::$type . '_convert_chars', $options, 1 ) ) { |
| 181 |
|
$value = convert_chars( $value ); |
classes/fields/wysiwyg.php 1 location
|
@@ 186-188 (lines=3) @@
|
| 183 |
|
} |
| 184 |
|
}//end if |
| 185 |
|
|
| 186 |
|
if ( 1 === (int) pods_v( static::$type . '_wptexturize', $options, 1 ) ) { |
| 187 |
|
$value = wptexturize( $value ); |
| 188 |
|
} |
| 189 |
|
|
| 190 |
|
if ( 1 === (int) pods_v( static::$type . '_convert_chars', $options, 1 ) ) { |
| 191 |
|
$value = convert_chars( $value ); |