Mywpnonces
1.0.0
MYWPNonces は、WordPress の Nonce 関数をオブジェクト指向で備えたライブラリです。
新しいインスタンスを宣言します。
$ myNonces = new MY_WP_Nonces ( ' my_nonce_action ' );
$ myNonces -> createNonce ();
ヘルプ: wp_create_nonce()
$ myNonce -> getNonceField ( ' the_name_of_nonce ' , true , true );
3 パラメータはオプションです
ヘルプ: wp_nonce_field()
$ myNonce -> verifyNonce ( $ nonce );
1 パラメータは必須です。
ヘルプ: wp_verify_nonce()
$ target_url = ' https://www.example.com/wp-admin/trash-something ' ;
$ myNonce -> getNonceUrl ( $ target_url , ' the_name_of_nonce ' );
最初のパラメータは必須で、2 番目のパラメータはオプションです
ヘルプ: wp_nonce_url()
$ query_arg = ' _security ' ;
$ myNonce -> checkAdminReferer ( $ query_arg );
1 パラメータはオプションです
ヘルプ: check_admin_referer()
$ query_arg = ' _security ' ;
$ die = true ;
$ myNonce -> checkAjaxReferer ( $ query_arg , $ die );
2 パラメータはオプションです
ヘルプ: check_ajax_referer()
$ myNonce -> areYouSure ();
ヘルプ: wp_nonce_ays()