WP HOOKS
filtrod 2.9.0

the_content_feed

Args 2Plik wp-includes/feed.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the post content for use in feeds.

Parametry

ParametrTypOpis
$contentstringThe current post content.
$feed_typestringType of feed. Possible values include 'rss2', 'atom'. Default 'rss2'.

Wywołanie

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

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

Popularne w tej kategorii