WP HOOKS
filtrod 5.9.0

rss_widget_feed_link

Args 2Plik wp-includes/widgets/class-wp-widget-rss.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the classic RSS widget's feed icon link.

Themes can remove the icon link by using add_filter( 'rss_widget_feed_link', '__return_empty_string' );.

Parametry

ParametrTypOpis
$feed_linkstring | falseHTML for link to RSS feed.
$instancearrayArray of settings for the current widget.

Wywołanie

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

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

Popularne w tej kategorii