WP HOOKS
filtrod 3.0.0

wp_upload_bits

Args 1Plik wp-includes/functions.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters whether to treat the upload bits as an error.

Returning a non-array from the filter will effectively short-circuit preparing the upload bits and return that value instead. An error message should be returned as a string.

Parametry

ParametrTypOpis
$upload_bits_errorarray | stringAn array of upload bits data, or error message to return.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'wp_upload_bits', 'twoja_funkcja' );

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

Popularne w tej kategorii