WP HOOKS
filtrdynamicznyod 3.0.0

comment_form_field_{$name}

Args 1Plik wp-includes/comment-template.php

Opis — z kodu źródłowego

Filters a comment form field for display.

The dynamic portion of the hook name, $name, refers to the name of the comment form field. Possible hook names include:

  • comment_form_field_comment
  • comment_form_field_author
  • comment_form_field_email
  • comment_form_field_url
  • comment_form_field_cookies

Hook dynamiczny — możliwe nazwy

comment_form_field_authorcomment_form_field_commentcomment_form_field_cookiescomment_form_field_emailcomment_form_field_url

Parametry

ParametrTypOpis
$fieldstringThe HTML-formatted output of the comment form field.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'comment_form_field_{$name}', 'twoja_funkcja' );

function twoja_funkcja($param_1) {
	// Twój kod
}

Popularne w tej kategorii