PHP code example of jascha030 / wp-ajax
1. Go to this page and download the library: Download jascha030/wp-ajax library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jascha030 / wp-ajax example snippets
// Method helloWorld will be added to hook: "wp_ajax_helloWorld" and optionally "wp_ajax_nopriv_helloWorld"
public function helloWord()
{
return wp_send_json("hello world");
}