Created
July 4, 2017 08:12
-
-
Save artikus11/a4599a8f353a51aeb00798f7b963f3aa to your computer and use it in GitHub Desktop.
Добавление согласия на обработку данных в комментариях
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'comment_form_after_fields', 'add_consent_personal_data_comment' ); | |
function add_consent_personal_data_comment(){ | |
?> | |
<small style="font-size: 12px;line-height: 1.1;margin: 10px 0;display: block;"> Нажимая на кнопку отправить, я принимаю условия <a href="#" target="_blank">пользовательского соглашения</a> , а также ознакомлен и согласен с <a href="#" target="_blank">политикой конфиденциальности</a> и даю согласие на обработку моих персональных данных</small> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment