LLMS_Akismet::render()
Contents
Source Source
File: includes/spam/class-llms-akismet.php
public function render() {
// Add in a honey pot field to help prevent spam bots.
if ( ! $this->is_enabled() || is_admin() ) {
return;
}
echo '<input type="text" aria-hidden="true" class="sr-only" name="llms_hp_fullname" style="display:none;" autocomplete="off" />';
}
Expand full source code Collapse full source code View on GitHub