Add a Text (f.ex. Privacy-related) before your Comments

With this code, an text passage will be placed right before your comments, if they’re open for that post. You can modify the text within and use basic HTML.

To use this, add it to your Theme’s functions.php, or via a Code Snippet Plugin.

// Function to add a custom message before the comment form
function add_custom_message_before_comment_form() {
    if (is_singular() && comments_open()) {
        echo '<p style="font-size: 12px;">Your Text and <a href="">Links</a> go here.</p>';
    }
}
add_action('comment_form_before', 'add_custom_message_before_comment_form');

Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *