The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
wpDiscuz shortcode
 
Share:
Notifications
Clear all

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! πŸŽ„

[Solved] wpDiscuz shortcode

1 Posts
1 Users
0 Reactions
14.3 K Views
Asti
 Asti
(@asti)
Illustrious Member Support
Joined: 8 years ago
Posts: 8204
Topic starter  

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.


   
Share: