Form to Add Posts to Custom Post Type
posting from the front-end is a matter of displaying a form and processing it: form: <!– New Post Form –> <div id=”postbox”> <form id=”new_post” name=”new_post” method=”post” action=””> <!– post name –> <p><label for=”title”>Title</label><br /> <input type=”text” id=”title” value=”” tabindex=”1″ size=”20″ name=”title” /> </p> <!– post Category –> <p><label for=”Category”>Category:</label><br /> <p><?php wp_dropdown_categories( ‘show_option_none=Category&tab_index=4&taxonomy=category’ ); ?></p> … Read more