mirror of
https://github.com/invite-frey/is-woo-payment-fps.git
synced 2025-04-05 05:50:42 +00:00
Register query vars for troubleshooting
This commit is contained in:
parent
544529348a
commit
102b41354d
@ -53,6 +53,18 @@ function its_wpf_add_class( $methods ){
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Reqister query var for qrcode image generation
|
||||
*/
|
||||
|
||||
add_filter( 'query_vars', 'its_wpf_qrcode_add_var' );
|
||||
function its_wpf_qrcode_add_var( $vars )
|
||||
{
|
||||
$vars[] = 'generate_fps_qrcode';
|
||||
$vars[] = '_wpnonce';
|
||||
return $vars;
|
||||
}
|
||||
|
||||
/**
|
||||
* Print out qr code when the right query var is found
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user