What are the ways to use WordPress as a user generated content site

What are the methods to create a user-generated-content website?

I know each has his own favorite way to do that, please elaborate on your own method, how to implement it and the pros/cons.

(This is mainly a wiki question, I just figured I know about 7 methods for that)

To be more specific: Which ways do you use to give visitors the ability to add contnet to your website (posts, images, videos, etc…)

3 Answers
3

Currently known ways:

  1. Use comments as input form. see the actual way described here. The comments can be altered to have more fields and contain a WYSIWYG editor for better user experience.

  2. Use TDO Mini Forms plugin to create a user-generated-data form. the users will fill the form, which will create a new draft post to be published by the site admin.

  3. Use a contact form plugin with wordpress email publishing mechanism. Set the contact form destination as the email set up as wordpress “feed” email.

  4. Write your own form that publish posts. this is described nicely in this post. You create a page template that shows the publishing post, and uses the data to create a draft (or post) using “insert_post”.

  5. Using gravity forms plugin. One of the plugin features is to “Allow users to automatically create a post”

  6. Setting the default user role as contributer. Once set, you need to allow people to register & login to your site. every registered user can publish drafts to the site.

Leave a Comment