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>'
);
} public static function load_form_js() { if ( !
is_admin() && ( !
function_exists( 'amp_is_request'
) || !
amp_is_request() ) && self::
get_api_key() ) { wp_register_script( 'akismet-frontend',
plugin_dir_url( __FILE__
) . '_inc/akismet-frontend.js', array
(),
filemtime( plugin_dir_path( __FILE__
) . '_inc/akismet-frontend.js'
), true
);
wp_enqueue_script( 'akismet-frontend'
);
} } /**
* Add the form JavaScript when we detect that a supported form shortcode is being parsed.
*/