2
0
Fork 0
mirror of https://github.com/discourse/wp-discourse.git synced 2025-10-03 08:59:21 +08:00
WordPress plugin that lets you use Discourse as the community engine for a WordPress blog http://www.discourse.org
Find a file
2021-03-19 17:57:11 -07:00
.github/workflows Try a simpler ruleset 2021-03-19 17:20:42 -07:00
admin Remove rule 2021-03-19 16:40:07 -07:00
assets
css Minor fixes to the default CSS 2020-05-29 15:35:15 -07:00
js Remove comments.js file 2019-10-07 13:03:57 -07:00
lib Bump version to 2.2.0 (#384) 2020-12-10 15:48:43 -08:00
templates Adds alt attribute for comment avatars (#368) 2020-09-04 11:15:38 -07:00
.gitignore
.jscsrc
.jshintignore Update jshintignore for new directory structure 2019-09-05 17:17:54 -07:00
composer.json Update codesniffer ruleset, dependencies and config (#376) 2020-12-15 11:01:37 -08:00
composer.lock Update codesniffer ruleset, dependencies and config (#376) 2020-12-15 11:01:37 -08:00
LICENSE license file an fixes 2016-07-05 18:51:35 +00:00
phpcs.xml Exclude some exclusions - this PR will be closed if it works 2021-03-19 17:57:11 -07:00
README.md Remove links to Github wiki 2020-04-22 12:41:21 -07:00
readme.txt Bump version to 2.2.2 2021-03-19 15:37:08 -07:00
uninstall.php Revert "Update files for WordPress VIP" 2019-08-26 14:13:26 -07:00
wp-discourse.php Bump version to 2.2.2 2021-03-19 15:37:08 -07:00

WP Discourse

OpenCollective OpenCollective

Note: the wp-discourse plugin requires >= PHP-5.4.0.

The WP Discourse plugin acts as an interface between your WordPress site and your Discourse community.

The plugin is not a substitute for Disqus-like commenting systems.

Use Discourse for Comments:

  • Automatically creates a forum topic for discussion when a new blog post is published.
  • Associates WP author accounts with their respective Discourse accounts. Does not require SSO.
  • Replies from the forum discussion can be embedded in the WP blog post. Select which replies to display based on post score and commenter "trust level" -- see docs.

See it Live

Single Sign On

The plugin also comes with optional SSO functionality which lets you use your WordPress site as the Single Sign On provider for your Discourse forum.

This will override Discourse's native (and powerful) login flow and is only recommended for use cases that strictly require such a setup, e.g. a site that is already using WordPress for large scale user management.

Contact

Installation

From your WordPress dashboard

  1. Visit 'Plugins > Add New'
  2. Search for 'WP Discourse'
  3. Activate WP Discourse from your Plugins page

From wordpress.org

  1. Download WP Discourse
  2. Upload the 'wp-discourse' directory to your '/wp-content/plugins/' directory
  3. Activate WP Discourse from your Plugins page

With Composer

If you're using Composer to manage WordPress, add WP-Discourse to your project's dependencies. Run:

composer require discourse/wp-discourse ~1.3.2

Or manually add it to your composer.json:

{
  "require": {
    "php": ">=5.4.0",
    "discourse/wp-discourse": "~1.3.2"
  }
}

For more detailed instructions please see the WP Discourse plugin installation and setup.

Frequently Asked Questions

Does this plugin install Discourse for me?

No this plugin acts as an interface between Discourse and WordPress. For it to work you will need to first set up Discourse forum. You can install Discourse for yourself following either of these guides:

Can I import old WordPress comments as Discourse comments (i.e. "replies")?

No.

Do WordPress and Discourse have to be installed on the same server?

The plugin uses the Discourse API, so your forum and blog can be hosted separately and the integration will still work. In fact, we strongly recommend hosting the two applications separately, since their hosting requirements are very different.

Is it possible to customize the comment templates?

Yes, the html templates used for publishing posts on Discourse and for displaying comments on WordPress can be customized in your theme. This is done by hooking into the filters that are applied to each template.

For more details on template customization, see: WP Discourse template customization

Contributing

  1. Fork this repo
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new pull request