We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd6406d commit 3adb0a2Copy full SHA for 3adb0a2
trunk/admin.widget.class.php
@@ -230,7 +230,9 @@ public function render_password_field()
230
public function render_template_field()
231
{
232
printf(
233
- '<input type="text" id="template" name="sp_settings[template]" class="regular-text" value="%s" /><br/>',
+ '<input type="text" id="template" name="sp_settings[template]" class="regular-text" value="%s" /><br/>
234
+ <small>The template must have a variable in it named <code>{{{content}}}</code>.<br/>
235
+ Note the triple curly braces, which are required to include non-escaped HTML.</small>',
236
isset($this->options['template']) ? $this->options['template'] : ''
237
);
238
}
0 commit comments