Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <form>
  2. <input type="text" name="title" />
  3. <input type="text" name="sinopsis" />
  4. [...]
  5. </form>
  6.  
  7. <form>
  8. <input type="text" name="name" />
  9. <input type="text" name="model" />
  10. <input type="text" name="year" />
  11. [...]
  12. </form>
  13.  
  14. <form>
  15. <input type="text" name="title" />
  16. <input type="text" name="director" />
  17. [...]
  18. </form>
  19.  
  20. function insert_custom_post()
  21. {
  22. // Treating $_POST variables sent from above forms
  23. // Executing wp_insert_post(...) according to post type
  24. // Redirecting to Home
  25. [...]
  26. }
  27. add_action( 'template_redirect', 'insert_custom_post' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement