Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpDiscuz community!
Merry Christmas and Happy Holidays! π
wpDiscuz allows you to load the comment section via [wpdiscuz_comments] shortcode as well.
To start usingΒ the wpDiscuz shortcode, just put the following code in the active theme functions.php file:
function my_wpdiscuz_shortcode() {
$html = "";
if (file_exists(ABSPATH . "wp-content/plugins/wpdiscuz/themes/default/comment-form.php")) {
ob_start();
include ABSPATH . "wp-content/plugins/wpdiscuz/themes/default/comment-form.php";
$html = ob_get_clean();
}
return $html;
}
add_shortcode("wpdiscuz_comments", "my_wpdiscuz_shortcode");
Here is an instruction on how to easily add custom code in WordPress (without Breaking Your Site): https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/
Then, you can use the shortcode in the post/page content wherever you want.Β
Besides adding the shortcode, you'd also need to enable the comment form for the current post type.Β
That is: the shortcode can be used if the post type supports comments.Β Β
In case you want to say thank you! π
We'd really appreciate if you leave a good review on the plugin page.
This is the best way to say thank you to this project and the support team.


