WP HOOKS
filtrod 3.6.0

override_post_lock

Args 3Plik wp-admin/includes/post.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters whether to allow the post lock to be overridden.

Returning false from the filter will disable the ability to override the post lock.

Parametry

ParametrTypOpis
$overrideboolWhether to allow the post lock to be overridden. Default true.
$post\WP_PostPost object.
$user\WP_UserThe user with the lock for the post.

Wywołanie

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

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

Popularne w tej kategorii