How to create a non-inline comments form?
-
I would like to be able to link in a page/template for posting new comments rather than having the comment form fields just appear inline at the bottom of the single.php template.
That is, on a typical single.php template, one would see an article, comments on that article and, at the bottom, several fields for posting one’s own comment. I would like to put the posting feature on its own page. When the comment is submitted, I want the user to be taken back to the article page.
I tried linking in my comments page like this:
<li><a href="<?php bloginfo('template_directory'); ?>/articles_comments.php">Write A Comment</a></li>
But the resulting url breaks all the links in my includes.
Additionally, I would also like to have a link to a page that only displayed the comments on an article.
And, while I’m dreaming, I would like to be able to save a comments field for the user’s physical location (that is, the state/city the are from).
Any tips? I’ve been searching to see if anyone else does this and I couldn’t find anything. Thank you for your help!
- The topic ‘How to create a non-inline comments form?’ is closed to new replies.