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

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

[Solved] wpDiscuz shortcode

1 Posts
1 Users
0 Reactions
11.8 K Views
Asti
 Asti
(@asti)
Illustrious Member Support
Joined: 8 years ago
Posts: 8075
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: