I'm having a problem with using one of the atts array passed from a shortcode I've written. I want this function to get the email address passed by send_to in the atts array but it keep returning blank. The function then updates the form that's included with a hidden field indicating where the form should be sent. Looking at the source HTML output it's including everything bar the email address passed as send_to.
I'd really appreciate someone helping, or pointing out my glaring error.
function forms_shortcode ($atts, $content=NULL) {
//shortcode functions
function mail_to() {
extract(shortcode_atts( array('send_to' => ''), $atts));
$hidden_to = '<input name="to" type="hidden" value="';
$hidden_to .= $send_to;
$hidden_to .= '" />';
return $hidden_to;
}
extract(shortcode_atts( array('id' => ''), $atts));
$id = strtolower($id);
if ($id == 'question') {
ob_start();
include 'question-form.php';
$content = ob_get_clean();
return $content;
mail_to();
}
}
add_shortcode('forms', 'forms_shortcode');
Cheers, Richard.