插件Plugin Maker pastebin不起作用,我已将其缩小到暂时机制失败。
在某一点上,它检查
check_admin_referer(\'$pluginmaker_nonce\', $pluginmaker_nonce);
这就是它失败的地方。(它给出一个错误“您确定要这样做吗”)
我注意到如果你不考虑第二个论点($pluginmaker_nonce
) 它起作用了。(默认参数值为\'_wpnonce\'
.)
这条路$pluginmaker_nonce
定义为
if (!function_exists(\'wp_nonce_field\')){
function pluginmaker_nonce_field($action = -1){
return;
}
$pluginmaker_nonce = -1;
}
else {
function pluginmaker_nonce_field($action = -1){
wp_nonce_field($action);
}
$pluginmaker_nonce = \'pluginmaker-nonce-key\';
}