[Plugin: WP-reCAPTCHA] Sidebar with phplist
-
I would like to use recaptcha in the sidebar for a phplist form (in combination with the phplist form integration plugin).
The way to use the latter in the sidebar is via:
<?php
$content = apply_filters('the_content', '<!--phplist form-->');
echo $content;?>
At first glance I thought I could introduce recaptcha as a filter on $content
$content=apply_filter(‘display_recaptcha’,$content);but this doesn’t work. Any ideas on how to get the recaptcha to appear ?
The topic ‘[Plugin: WP-reCAPTCHA] Sidebar with phplist’ is closed to new replies.