includes/acf/fields/email.php 1 location
|
@@ 70-75 (lines=6) @@
|
67 |
|
|
68 |
|
|
69 |
|
// prepend |
70 |
|
if( $field['prepend'] !== "" ) { |
71 |
|
|
72 |
|
$field['class'] .= ' acf-is-prepended'; |
73 |
|
$e .= '<div class="acf-input-prepend">' . $field['prepend'] . '</div>'; |
74 |
|
|
75 |
|
} |
76 |
|
|
77 |
|
|
78 |
|
// append |
includes/acf/fields/number.php 1 location
|
@@ 83-88 (lines=6) @@
|
80 |
|
|
81 |
|
|
82 |
|
// prepend |
83 |
|
if( $field['prepend'] !== "" ) { |
84 |
|
|
85 |
|
$field['class'] .= ' acf-is-prepended'; |
86 |
|
$e .= '<div class="acf-input-prepend">' . $field['prepend'] . '</div>'; |
87 |
|
|
88 |
|
} |
89 |
|
|
90 |
|
|
91 |
|
// append |
includes/acf/fields/password.php 1 location
|
@@ 71-76 (lines=6) @@
|
68 |
|
|
69 |
|
|
70 |
|
// prepend |
71 |
|
if( $field['prepend'] !== "" ) { |
72 |
|
|
73 |
|
$field['class'] .= ' acf-is-prepended'; |
74 |
|
$e .= '<div class="acf-input-prepend">' . $field['prepend'] . '</div>'; |
75 |
|
|
76 |
|
} |
77 |
|
|
78 |
|
|
79 |
|
// append |
includes/acf/fields/text.php 1 location
|
@@ 82-87 (lines=6) @@
|
79 |
|
|
80 |
|
|
81 |
|
// prepend |
82 |
|
if( $field['prepend'] !== "" ) { |
83 |
|
|
84 |
|
$field['class'] .= ' acf-is-prepended'; |
85 |
|
$e .= '<div class="acf-input-prepend">' . $field['prepend'] . '</div>'; |
86 |
|
|
87 |
|
} |
88 |
|
|
89 |
|
|
90 |
|
// append |