appthemes_after_blog_comments

This function executes in the comments-blog.php file and loads after the have_comments() if statement.

appthemes_after_blog_comments();

Example

You can use this hook to add things like legal disclaimers or other information your readers should know after commenting.

' . __( 'Comments will be moderated and approved upon author\'s discretion.' , 'appthemes' ) . '

';
}
add_action( 'appthemes_after_blog_comments', 'insert_comments_disclaimer' );

Changelog

  • since 1.1

Source File

appthemes_after_blog_comments() is located in comments-blog.php.

Your rating: none
Rating: 0 - 0 votes