filtrod 3.6.0
override_post_lock
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
| Parametr | Typ | Opis |
|---|---|---|
$override | bool | Whether to allow the post lock to be overridden. Default true. |
$post | \WP_Post | Post object. |
$user | \WP_User | The 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
}
// 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