We would like the below comment form fields to be converted into comment_form arrays. In your response please provide a complete snippet.
Arrays that should be filled in are:
comment_field
must_log_in
logged_in_as
comment_notes_before
comment_notes_after'
id_form
id_submit
title_reply
title_reply_to
cancel_reply_link
label_submit
* am I missing any?
** If an array would have no data please place ". . ." as a place holder.
Leave a Response
You must be logged in to post a comment.
Solution - 1
Hi,
I had coded you a WordPress 3.0 comment form based on the above codes you posted.
This form uses the function comment_form().
You can further customization by adding into the $arguments array.
You can refer to http://codex.wordpress.org/Function_Reference/comment_form
or http://ottopress.com/2010/wordpress-3-0-theme-tip-the-comment-form/
for customization examples.
Or simply drop me a reply, I will add in your customization.
You must be logged in to post a comment.
'commentform',
'id_submit' => 'submit',
'title_reply' => __( 'Leave a Response' ),
'title_reply_to' => __( 'Leave a Reply to %s' ),
'cancel_reply_link' => __( 'Cancel reply' ),
'label_submit' => __( 'Post Comment' ),
);
?>
Thanks.
|