• Resolved tal4tyomkin

    (@tal4tyomkin)


    hey, a couple of questions about the WP JOB MANAGER plugin.
    1. if I install WP JOB MANAGER on my site, is there a way to link a list of jobs from another server to the WP JOB MANAGER through an API?
    2. is WP JOB MANAGER support content in Hebrew?

Viewing 3 replies - 1 through 3 (of 3 total)
  • As far as I know there isn’t any way to natively “link” jobs from other sites, you could use something like WP All Import to import them, or you could use the Rest API from another site to the WordPress site to insert the job listings

    Plugin Support bindlegirl (a11n)

    (@bindlegirl)

    I’m marking this as resolved since it’s been over 2 weeks with no response. If you still need help with this, please feel free to mark it ‘not resolved’ again.

    Thanks

    bbmadmin

    (@bbmadmin)

    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.
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘WP JOB MANAGER with API’ is closed to new replies.