// Enqueue JS and pass ajax_url + nonce add_action('admin_enqueue_scripts', function () { wp_enqueue_script('pr-custom-ajax', plugin_dir_url(__FILE__) . 'admin.js', array('jquery'), null, true); wp_localize_script('pr-custom-ajax', 'myAjax', array( 'ajax_url' => admin_url('admin-ajax.php'), 'nonce' => wp_create_nonce('pr_download_nonce') )); }); // AJAX callback for property download add_action("wp_ajax_pr_import_auth", "pr_import_auth"); function pr_import_auth() { if (!isset($_POST['security']) || !wp_verify_nonce($_POST['security'], 'pr_download_nonce')) { wp_send_json_error('Unauthorized request'); } $pr_import = new pr_properties_class(); $pr_import->download_xml(); $data = array( 'action' => 'delete', 'chunk' => 0, 'size' => 1000 ); update_option('pr_api_info', json_encode($data)); wp_send_json_success('Properties downloaded'); } Комментарии: Crna Gora https://www.odmor.webexperts.me/ru/crna-gora/ Booking apartmana u Crnoj Gori Wed, 23 Oct 2024 10:39:52 +0000 hourly 1 https://wordpress.org/?v=6.9.4 Автор: A WordPress Commenter https://www.odmor.webexperts.me/ru/crna-gora/#comment-35 Thu, 27 Oct 2022 09:43:00 +0000 http://tenerife.wprentals.org/?p=1#comment-35 Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.

]]>