fix: 修复 AI API 测试功能缺少 nonce 参数的问题

- 在测试 API 的 AJAX 请求中添加 nonce 参数
- 使用 wp_create_nonce('argon_test_unified_api') 生成 nonce
- 修复测试按钮点击后无法正常工作的问题
This commit is contained in:
2026-01-26 13:51:14 +08:00
parent 2de985e2a8
commit 7af137ae91
4 changed files with 1 additions and 122 deletions

View File

@@ -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) {