filtrod 6.1.0
pre_wp_list_authors_post_counts_query
Opis — z kodu źródłowego
Filters whether to short-circuit performing the query for author post counts.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$post_counts | int[] | false | Array of post counts, keyed by author ID. |
$parsed_args | array | The arguments passed to wp_list_authors() combined with the defaults. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'pre_wp_list_authors_post_counts_query', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'pre_wp_list_authors_post_counts_query', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii