Currently on my website I have comments enabled to load on my "wall pages", which are essentially posts. Each wall page is saved as an entry to a unique database and each entry has a unique ID ("id" column). The comments are all saved in the default wp_comments table and I've added a "wall_post_id" column to them, so that the column updates with the value of the id of the wall page for each comment entry.
I want to only display comments that have matching "wall_post_id" with the id of the current "wall page". I don't know which file to manipulate in the file manager.
Hi Solodevelops,
As you may know, wpDiscuz is a native comment system and it uses the same WordPress database tables to store the comments. So this is not a wpDiscuz-related question.
You should use the pre_get_comments hook to make it work as you need. More info here: https://developer.wordpress.org/reference/hooks/pre_get_comments/
Hey Asti,
Thanks for getting back to me. I'll look into using the pre_get_comments hook.
Looking at the files within the "wpdiscuz" folder, in plugins, I see one or two files with comment retrieving functionality. If I was to insert the pre_get_comments logic somewhere, I assume it would be outside of the wpdiscuz folder, perhaps in my functions.php?
Thanks