WP HOOKS
filtrod 3.6.0

get_attached_media

Args 3Plik wp-includes/media.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the list of media attached to the given post.

Parametry

ParametrTypOpis
$children\WP_Post[]Array of media attached to the given post.
$typestringMime type of the media desired.
$post\WP_PostPost object.

Wywołanie

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

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

Popularne w tej kategorii