We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 443c35f commit b25aa76Copy full SHA for b25aa76
1 file changed
README.md
@@ -140,15 +140,13 @@ You can create multilingual forms using Polylang. WPLF will register and automat
140
141
Example:
142
```html
143
-<input type="text" placeholder="{{ Test string }}" name="test">
+<input type="text" placeholder="{{ Test string }}" name="test">
144
```
145
146
You can also disable this feature, and create your own middleware for WPML, if you'd like.
147
148
```php
149
-add_filter( 'wplf_load_polylang' , function() {
150
- return false;
151
-} );
+add_filter( 'wplf_load_polylang' , __return_false );
152
153
154
## Adding extra classes to the form element
0 commit comments