WP HOOKS
filtrod 1.5.0

comments_number

Args 2Plik wp-includes/comment-template.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the comments count for display.

Parametry

ParametrTypOpis
$comments_number_textstringA translatable string formatted based on whether the count is equal to 0, 1, or 1+.
$comments_numberintThe number of post comments.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'comments_number', 'twoja_funkcja', 10, 2 );

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

Popularne w tej kategorii