Archived topic
Comment form above comments with a plugin?
1 reply · Started by Guido on March 26, 2021
Hi,
I'd like to move the comment form for new comments above the existing comments.
I've already found this page that provides the PHP code to do so.
However, I'd rather not use a child theme.
I found this page about adding PHP.
I'm already using the 'Code Snippets' plugin for adding a a couple of functions to my site. But I don't think you can use Code Snippets to override the existing comments.php file?
The other option on the page is creating a custom plugin. This should be able to override the existing comments.php file, right?
If so, is there anything I need to add to the code provided here to do so?
Thanks in advance!
Hi there,
the only way i believe that is possible is to use the template_include filter in your plugin:
https://developer.wordpress.org/reference/hooks/template_include/
I found an example of it being used for that in Stack Overflow:
https://stackoverflow.com/a/13999632
But i have never used it and i can't really advise on how to go about doing it for the comments.php. We recommend using the Child Theme method as theirs no additional coding required, just a copy and paste.