Posts: 457
Name: Randy
Location: Northern Wisconsin
|
If I am understanding correctly, you want this new message to appear on a new post automatically that features ONLY that new message but still allows others to comment on that new Post?
Therefore my suggestion off the top of my head would be:
1. Allow the user to create message through a custom page template which holds the form.
2. Direct this user message(all input) through some server-side validation process.
3. After the script validates the user's input, it can create a post programmatically using this method.
Obviously, inserting validated user message for:
'post_content' => 'Lorem ipsum dolor sit amet...', // this would be the user msg
This article might be of some help as well.
Make sense?
Quote:
|
By the way, have you ever heard of enabling (in a blog template format) posting without going through the dashboard?
|
You can post via email. http://codex.wordpress.org/Post_to_y...og_using_email
I never have done this.
Last edited by racer x; 02-12-2010 at 03:17 PM..
|