WP HOOKS
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_atom
  • do_feed_rdf
  • do_feed_rss
  • do_feed_rss2

Hook dynamiczny — możliwe nazwy

do_feed_atomdo_feed_rdfdo_feed_rssdo_feed_rss2

Parametry

ParametrTypOpis
$is_comment_feedboolWhether the feed is a comment feed.
$feedstringThe 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
}

Popularne w tej kategorii