Register query vars for troubleshooting

This commit is contained in:
Frey Mansikkaniemi 2020-09-06 21:09:47 +08:00
parent 544529348a
commit 102b41354d

View File

@ -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 * Print out qr code when the right query var is found
*/ */