How to get the wpnonce value?
That value is a random-ish string generated for one-time use with a lifespan of, if I remember correctly, 12 hours. I am not sure what you mean by “get” the value. Assuming you mean “generate the nonce” then… You want wp_nonce_url or one of the related functions. wp_nonce_url( $actionurl, $action, $name ); For example: wp_nonce_url( … Read more