fix: 修复 AI API 测试功能缺少 nonce 参数的问题
- 在测试 API 的 AJAX 请求中添加 nonce 参数
- 使用 wp_create_nonce('argon_test_unified_api') 生成 nonce
- 修复测试按钮点击后无法正常工作的问题
This commit is contained in:
@@ -2448,6 +2448,7 @@ function themeoptions_page(){
|
||||
|
||||
$.post(ajaxurl, {
|
||||
action: 'argon_ajax_test_unified_api',
|
||||
nonce: '<?php echo wp_create_nonce('argon_test_unified_api'); ?>',
|
||||
api_id: apiId
|
||||
}, function(response) {
|
||||
if (response.success) {
|
||||
|
||||
Reference in New Issue
Block a user