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 ' );
第一个参数是必需的,第二个参数是可选的
帮助: 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()