Extension:PageDisqus
![]() Release status: beta |
|
---|---|
![]() |
|
Description | Adds the Disqus commenting service at bottom of each page |
Author(s) | Michael Platzertalk |
Maintainer(s) | Sophivorus |
Latest version | 1.0 (2022-01-18) |
MediaWiki | 1.25+ |
License | GPL |
Download | |
|
|
Quarterly downloads | 7 (Ranked 171st) |
Translate the PageDisqus extension if it is available at translatewiki.net | |
The PageDisqus extension automatically integrates the Disqus commenting service to every page, right after the content area.
InstallationEdit
- Download and place the file(s) in a directory called
PageDisqus
in yourextensions/
folder. - Add the following code at the bottom of your
LocalSettings.php
:wfLoadExtension( 'PageDisqus' ); $wgPageDisqusShortname = 'your-disqus-shortname';
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
ConfigurationEdit
$wgPageDisqusShortname
- Required! The Disqus shortname for your site. This is the identifier (or the hostname) you specify when entering your unique Disqus URL.
By default, Disqus will be shown in every page. However, you can control this with the following configuration options:
$wgPageDisqusPageWhitelist = [ 'Foo', 'Bar', 'Baz' ];
- Only show in these pages$wgPageDisqusPageBlacklist = [ 'Main Page' ];
- Don't show in these pages$wgPageDisqusCategoryWhitelist = [ 'Controversial', 'New' ];
- Only show in these categories$wgPageDisqusCategoryBlacklist = [ 'War', 'Sex' ];
- Don't show in these categories$wgPageDisqusNamespaceWhitelist = [ NS_MAIN, NS_HELP ];
- Only show in these namespaces$wgPageDisqusNamespaceBlacklist = [ NS_TEMPLATE, NS_MEDIAWIKI ];
- Don't show in these namespaces
See alsoEdit
- Extension:DisqusTag - Disqus anywhere a tag is inserted
- Extension:SectionDisqus - Disqus each section independently
- Disqus Comments Widget on mediawikiwidgets.org site, it uses Extension:Widgets.