Enable post comments- past, current, future

Hey there, at one point I went through and manually turned off comments for posts. However, my site is getting enough traffic and engagement where I would like to enable comments (Disqus). If it helps, my site is: https://www.strategybeam.com/

Is there a way to automatically enable comments for all past, present, and future posts? Or, do I have to manually override the posts that I manually turned comments off? If so, is there a process that I can follow to reduce the tedious work? Thank you for your time and help!

Hi there,

Thanks for writing in.

You may follow this https://www.wpgarage.com/tips/allow-comments-in-old-posts-wordpress/

Or simply add this code to your child theme’s functions.php

add_filter( 'comments_open', '__return_true' );

That should open all post comments including the old posts.

Hope this helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.