Created
June 1, 2017 19:18
-
-
Save artikus11/b37c81dfe776fd6e62586a4171774dc3 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
/* ========================================================================== * | |
* Настройка формы комментирования | |
* ========================================================================== */ | |
// Убираем поле Url | |
add_filter( 'basic_comment_form_defaults', 'artabr_comment_form', 10 ); | |
function artabr_comment_form( $fields ) { | |
unset( $fields['url'] ); | |
return $fields; | |
} | |
// Изменяем надпись над формой | |
add_filter( 'comment_form_defaults', 'artabr_comment_form_notice', 10 ); | |
function artabr_comment_form_notice( $fields ) { | |
$fields['comment_notes_before'] = '<p class="comment-notes"><span id="email-notes">Ваш e-mail не будет опубликован. Все поля обязательны к заполнению</span></p>'; | |
return $fields; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment