This hook allows you to add a text before the review comment.
Source
File : /templates/review.php
Used by |
/templates/review.php |
Example :
function prefix_wp_travel_review_before_comment_text( $comment ) { echo '<p>This text is added before comment text</p>'; // Adds the content before comments. } add_action( 'wp_travel_review_before_comment_text', 'prefix_wp_travel_review_before_comment_text' );