Please have a look in your inbox.
i have sent an email with subject “Your post on http://wordpress.org/support/topic/264825” today.
Thanks and Regards,
well,
here is the solution to what you require.
http://www.ideashower.com/files/scripts/extra-comment-fields.zip
this is plugin which by which you can add as many extra fields in comments form as you want.
and can just retrieve values by appending ‘extra’ to the name provided.
i.e.
echo esc_attr($comment_author);
echo esc_attr($comment_extra_age);
Hope it works for you. (works fine for me.)
Aslam Shahid
Well,
try using following to call for dynamic sidebar retrieval.
issue in your code seems that you are using ‘echo $sect_title’ in dynamic_sidebar function which is against php syntax.
🙂
<?php if ( !function_exists(‘dynamic_sidebar’) ||
!dynamic_sidebar($sect_title) ) { ?>
Not working
<?php } ?>
Aslam Shahid