Honeypot Location:
Honeypot Text:
'; if(isset($_REQUEST['submitted'])) { update_option('script-location', $_REQUEST['hp']); update_option('script-text', $_REQUEST['hp-location']); echo('options saved'); } } function linkhoneypot() { $hp = get_option('script-location'); $hptext = get_option('script-text'); $links = array(1 => ''.$hptext.'', 2 => '', 3 => '', 4 => '' ); echo $links[array_rand($links)]; } add_option('script-location', '', 'Location of your honeypot'); add_option('script-text', '', 'Text to use in the links to the honeypot'); add_action('admin_menu', 'config_honey_pot'); ?>