Yes you can link to a list of WP JOB MANAGER jobs from another server through an API.
Just a couple of lines of PHP needed
//get the api content
$content=file_get_contents(‘https://yoursitename.com/wp-json/wp/v2/job-listings’);
//turn content into an array
$data=json_decode($content, true);
Now you can play with $data as much as you like
-
This reply was modified 5 years ago by bbmadmin.
-
This reply was modified 5 years ago by bbmadmin.
-
This reply was modified 5 years ago by bbmadmin.