temporarily enabling comments form
-
we run a static website with WordPress in the root directory. So I disabled the comments form in page.php:
<?php comments_template( '', true ); ?>
like this:
// <?php comments_template( '', true ); ?>
But we want to make a new instance of WordPress in a /blog/ directory. I want people to be able to request access to that instance by filling out a form with their name, email address, and member number (to prove their identity).
We will then sent them login information with a temporary password. I was thinking I could temporarily enable the comments window by adding the
<?php comments_template( '', true ); ?>
directly on the page in HTML mode. Will that work? Will it again be disabled when they move away from this page? Is there a better way to do this?
- The topic ‘temporarily enabling comments form’ is closed to new replies.