I am trying to get the comments section on the page to appear in the sidebar. I pasted this in my function.php:
function my_wpdiscuz_shortcode() {
if (file_exists(ABSPATH . ‘wp-content/plugins/wpdiscuz/templates/comment/comment-form.php’)) {
ob_start();
include_once ABSPATH . ‘wp-content/plugins/wpdiscuz/templates/comment/comment-form.php’;
return ob_get_clean();
}
}
add_shortcode(‘wpdiscuz_comments’, ‘my_wpdiscuz_shortcode’);
Then I can pasted [wpdiscz_comments] in a text widget in my sidebar. I am just getting a blank screen where the comments should be.