This function executes in the comments-page.php file and loads after the page comments respond form.
Usage
This hook provides no parameters. You use this hook by having your function echo output to the browser, or by having it perform background tasks. Your functions shouldn’t return, and shouldn’t take any parameters.
add_action( 'appthemes_after_page_comments_form', 'your_function' ); |
Example: Legal Disclaimers
You can use this hook to add things like legal disclaimers or other information your readers should know after commenting.
<?php function insert_comments_disclaimer() { echo '<div class="disclaimer">' . __( 'Comments will be moderated and approved upon author\'s discretion.', 'appthemes' ) . '</div>'; } add_action( 'appthemes_after_page_comments_form', 'insert_comments_disclaimer' ); ?> |
Changelog
- since 1.1
Source File
appthemes_after_page_comments_form()
is located in comments-page.php
.