akcjadynamicznyod 2.1.0
do_feed_{$feed}
Args 2Plik wp-includes/functions.php
Opis — z kodu źródłowego
Fires once the given feed is loaded.
The dynamic portion of the hook name, $feed, refers to the feed template name.
Possible hook names include:
do_feed_atomdo_feed_rdfdo_feed_rssdo_feed_rss2
Hook dynamiczny — możliwe nazwy
do_feed_atomdo_feed_rdfdo_feed_rssdo_feed_rss2Parametry
| Parametr | Typ | Opis |
|---|---|---|
$is_comment_feed | bool | Whether the feed is a comment feed. |
$feed | string | The feed name. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'do_feed_{$feed}', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'do_feed_{$feed}', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii