You appear to be a bot. Output may be restricted
Description
Controls the display of a privacy related notice underneath the comment form using the akismet_comment_form_privacy_notice
option and filter respectively.
Default is top not display the notice, leaving the choice to site admins, or integrators.
Usage
Akismet::display_comment_form_privacy_notice();
Parameters
Returns
void
Source
File name: akismet/class.akismet.php
Lines:
1 to 12 of 12
public static function display_comment_form_privacy_notice() { if ( 'display' !== apply_filters( 'akismet_comment_form_privacy_notice', get_option( 'akismet_comment_form_privacy_notice', 'hide' ) ) ) { return; } echo apply_filters( 'akismet_comment_form_privacy_notice_markup', '<p class="akismet_comment_form_privacy_notice">' . sprintf( __( 'This site uses Akismet to reduce spam. <a href="%s" target="_blank" rel="nofollow noopener">Learn how your comment data is processed</a>.', 'akismet' ), 'https://akismet.com/privacy/' ) . '</p>' ); }