Great plugin. Easy to use and it's so flexible for many purposes.
I'm trying to hook into a simple drop down list of my most recent posts within a specific category.
Basically, I'd like the user to select a post from a drop down box and this to be integrated into the contact form. This code grabs my recent posts from this category and puts into a drop down item but I can't figure out if there's a way to integrate it into contact form 7.
<select name="events">
<option value="" selected="selected">Select an Event...</option>
<?php while (have_posts()) : the_post(); ?>
<?php if (urldecode($alert[0]) == the_title()){ ?>
<option value="<?php the_title();?>"><?php the_title();?></option>
<?php } else { ?>
<option value="<?php the_title();?>"><?php the_title();?></option>
<?php } ?>
<?php endwhile; ?>
Is this possible or should I try another approach?
Thanks,
Bob