Filters the nonces to send to the New/Edit Post screen.
$response, $data, $screen_id
Sortie :
@param array $response The Heartbeat response. @param array $data The $_POST data sent. @param string $screen_id The screen ID.
// Modifier la valeur avec le filtre 'wp_refresh_nonces'
add_filter('wp_refresh_nonces', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($response) {
// Modifier la valeur
return $response;
}
Chargement des actualités...