Wordpress job listing auto published indeed site



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








-3















I am a new WordPress developer, I have a client that would like their job posting to automatically published on indeed.



I was looking for information on the best way to proceed.



Please help me, can anyone guide in the right direction?










share|improve this question
























  • opensource.indeedeng.io/api-documentation

    – Stender
    Nov 15 '18 at 12:56






  • 1





    Please see: Why is “Can someone help me?” not an actual question?

    – EJoshuaS
    Nov 15 '18 at 14:55

















-3















I am a new WordPress developer, I have a client that would like their job posting to automatically published on indeed.



I was looking for information on the best way to proceed.



Please help me, can anyone guide in the right direction?










share|improve this question
























  • opensource.indeedeng.io/api-documentation

    – Stender
    Nov 15 '18 at 12:56






  • 1





    Please see: Why is “Can someone help me?” not an actual question?

    – EJoshuaS
    Nov 15 '18 at 14:55













-3












-3








-3








I am a new WordPress developer, I have a client that would like their job posting to automatically published on indeed.



I was looking for information on the best way to proceed.



Please help me, can anyone guide in the right direction?










share|improve this question
















I am a new WordPress developer, I have a client that would like their job posting to automatically published on indeed.



I was looking for information on the best way to proceed.



Please help me, can anyone guide in the right direction?







wordpress






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 15 '18 at 14:55









EJoshuaS

7,445103051




7,445103051










asked Nov 15 '18 at 12:49









Venkatesh AVenkatesh A

12




12












  • opensource.indeedeng.io/api-documentation

    – Stender
    Nov 15 '18 at 12:56






  • 1





    Please see: Why is “Can someone help me?” not an actual question?

    – EJoshuaS
    Nov 15 '18 at 14:55

















  • opensource.indeedeng.io/api-documentation

    – Stender
    Nov 15 '18 at 12:56






  • 1





    Please see: Why is “Can someone help me?” not an actual question?

    – EJoshuaS
    Nov 15 '18 at 14:55
















opensource.indeedeng.io/api-documentation

– Stender
Nov 15 '18 at 12:56





opensource.indeedeng.io/api-documentation

– Stender
Nov 15 '18 at 12:56




1




1





Please see: Why is “Can someone help me?” not an actual question?

– EJoshuaS
Nov 15 '18 at 14:55





Please see: Why is “Can someone help me?” not an actual question?

– EJoshuaS
Nov 15 '18 at 14:55












2 Answers
2






active

oldest

votes


















1














You need to send them an XML feed of your jobs, brah.



Please read thier full documentation: https://www.indeed.co.uk/intl/en/xmlinfo.html



<?xml version="1.0" encoding="utf-8"?>
<source>
<publisher>Example Job Site</publisher>
<publisherurl>http://www.examplejobsite.com</publisherurl>
<lastBuildDate>Fri, 10 Dec 2008 22:49:39 GMT</lastBuildDate>
<job>
<title><![CDATA[Sales Executive]]></title>
<date><![CDATA[Fri, 10 Dec 2005 22:49:39 GMT]]></date>
<referencenumber><![CDATA[unique123131]]></referencenumber>
<url><![CDATA[http://www.examplejobsite.com/viewjob.cfm?jobid=unique123131]]></url>
<company><![CDATA[Big ABC Corporation]]></company>
<city><![CDATA[Phoenix]]></city>
<state><![CDATA[AZ]]></state>
<country><![CDATA[US]]></country>
<postalcode><![CDATA[85003]]></postalcode>
<description><![CDATA[Do you have 1-3 years of sales experience? Are you relentless at closing the deal? Are you ready for an exciting and high-speed career in sales? If so, we want to hear from you!

[...]

We provide competitive compensation, including stock options and a full benefit plan. As a fast-growing business, we offer excellent opportunities for exciting and challenging work. As our company continues to grow, you can expect unlimited career advancement! ]]></description>
<salary><![CDATA[$50K per year]]></salary>
<education><![CDATA[Bachelors]]></education>
<jobtype><![CDATA[fulltime, parttime]]></jobtype>
<category><![CDATA[Category1, Category2, CategoryN]]></category>
<experience><![CDATA[5+ years]]></experience>
</job>
[...]
</source>





share|improve this answer






























    0














    For Creating Auto Update / Auto Publish sites checklist are:



    1. Install WP Automatic Plugin

    2. Find RSS Feed of the site, which you want to fetch post/jobs (It is necessary to site allow to fetch post via RSS)

    3. Configure Plugin

    4. Set the interval time limit (For checking again to fetch new post/jobs)

    5. Assign the specific category to specific post /jobs

    6. Done!

    If you face any further problem, feel free to ask me.






    share|improve this answer























      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53319862%2fwordpress-job-listing-auto-published-indeed-site%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      1














      You need to send them an XML feed of your jobs, brah.



      Please read thier full documentation: https://www.indeed.co.uk/intl/en/xmlinfo.html



      <?xml version="1.0" encoding="utf-8"?>
      <source>
      <publisher>Example Job Site</publisher>
      <publisherurl>http://www.examplejobsite.com</publisherurl>
      <lastBuildDate>Fri, 10 Dec 2008 22:49:39 GMT</lastBuildDate>
      <job>
      <title><![CDATA[Sales Executive]]></title>
      <date><![CDATA[Fri, 10 Dec 2005 22:49:39 GMT]]></date>
      <referencenumber><![CDATA[unique123131]]></referencenumber>
      <url><![CDATA[http://www.examplejobsite.com/viewjob.cfm?jobid=unique123131]]></url>
      <company><![CDATA[Big ABC Corporation]]></company>
      <city><![CDATA[Phoenix]]></city>
      <state><![CDATA[AZ]]></state>
      <country><![CDATA[US]]></country>
      <postalcode><![CDATA[85003]]></postalcode>
      <description><![CDATA[Do you have 1-3 years of sales experience? Are you relentless at closing the deal? Are you ready for an exciting and high-speed career in sales? If so, we want to hear from you!

      [...]

      We provide competitive compensation, including stock options and a full benefit plan. As a fast-growing business, we offer excellent opportunities for exciting and challenging work. As our company continues to grow, you can expect unlimited career advancement! ]]></description>
      <salary><![CDATA[$50K per year]]></salary>
      <education><![CDATA[Bachelors]]></education>
      <jobtype><![CDATA[fulltime, parttime]]></jobtype>
      <category><![CDATA[Category1, Category2, CategoryN]]></category>
      <experience><![CDATA[5+ years]]></experience>
      </job>
      [...]
      </source>





      share|improve this answer



























        1














        You need to send them an XML feed of your jobs, brah.



        Please read thier full documentation: https://www.indeed.co.uk/intl/en/xmlinfo.html



        <?xml version="1.0" encoding="utf-8"?>
        <source>
        <publisher>Example Job Site</publisher>
        <publisherurl>http://www.examplejobsite.com</publisherurl>
        <lastBuildDate>Fri, 10 Dec 2008 22:49:39 GMT</lastBuildDate>
        <job>
        <title><![CDATA[Sales Executive]]></title>
        <date><![CDATA[Fri, 10 Dec 2005 22:49:39 GMT]]></date>
        <referencenumber><![CDATA[unique123131]]></referencenumber>
        <url><![CDATA[http://www.examplejobsite.com/viewjob.cfm?jobid=unique123131]]></url>
        <company><![CDATA[Big ABC Corporation]]></company>
        <city><![CDATA[Phoenix]]></city>
        <state><![CDATA[AZ]]></state>
        <country><![CDATA[US]]></country>
        <postalcode><![CDATA[85003]]></postalcode>
        <description><![CDATA[Do you have 1-3 years of sales experience? Are you relentless at closing the deal? Are you ready for an exciting and high-speed career in sales? If so, we want to hear from you!

        [...]

        We provide competitive compensation, including stock options and a full benefit plan. As a fast-growing business, we offer excellent opportunities for exciting and challenging work. As our company continues to grow, you can expect unlimited career advancement! ]]></description>
        <salary><![CDATA[$50K per year]]></salary>
        <education><![CDATA[Bachelors]]></education>
        <jobtype><![CDATA[fulltime, parttime]]></jobtype>
        <category><![CDATA[Category1, Category2, CategoryN]]></category>
        <experience><![CDATA[5+ years]]></experience>
        </job>
        [...]
        </source>





        share|improve this answer

























          1












          1








          1







          You need to send them an XML feed of your jobs, brah.



          Please read thier full documentation: https://www.indeed.co.uk/intl/en/xmlinfo.html



          <?xml version="1.0" encoding="utf-8"?>
          <source>
          <publisher>Example Job Site</publisher>
          <publisherurl>http://www.examplejobsite.com</publisherurl>
          <lastBuildDate>Fri, 10 Dec 2008 22:49:39 GMT</lastBuildDate>
          <job>
          <title><![CDATA[Sales Executive]]></title>
          <date><![CDATA[Fri, 10 Dec 2005 22:49:39 GMT]]></date>
          <referencenumber><![CDATA[unique123131]]></referencenumber>
          <url><![CDATA[http://www.examplejobsite.com/viewjob.cfm?jobid=unique123131]]></url>
          <company><![CDATA[Big ABC Corporation]]></company>
          <city><![CDATA[Phoenix]]></city>
          <state><![CDATA[AZ]]></state>
          <country><![CDATA[US]]></country>
          <postalcode><![CDATA[85003]]></postalcode>
          <description><![CDATA[Do you have 1-3 years of sales experience? Are you relentless at closing the deal? Are you ready for an exciting and high-speed career in sales? If so, we want to hear from you!

          [...]

          We provide competitive compensation, including stock options and a full benefit plan. As a fast-growing business, we offer excellent opportunities for exciting and challenging work. As our company continues to grow, you can expect unlimited career advancement! ]]></description>
          <salary><![CDATA[$50K per year]]></salary>
          <education><![CDATA[Bachelors]]></education>
          <jobtype><![CDATA[fulltime, parttime]]></jobtype>
          <category><![CDATA[Category1, Category2, CategoryN]]></category>
          <experience><![CDATA[5+ years]]></experience>
          </job>
          [...]
          </source>





          share|improve this answer













          You need to send them an XML feed of your jobs, brah.



          Please read thier full documentation: https://www.indeed.co.uk/intl/en/xmlinfo.html



          <?xml version="1.0" encoding="utf-8"?>
          <source>
          <publisher>Example Job Site</publisher>
          <publisherurl>http://www.examplejobsite.com</publisherurl>
          <lastBuildDate>Fri, 10 Dec 2008 22:49:39 GMT</lastBuildDate>
          <job>
          <title><![CDATA[Sales Executive]]></title>
          <date><![CDATA[Fri, 10 Dec 2005 22:49:39 GMT]]></date>
          <referencenumber><![CDATA[unique123131]]></referencenumber>
          <url><![CDATA[http://www.examplejobsite.com/viewjob.cfm?jobid=unique123131]]></url>
          <company><![CDATA[Big ABC Corporation]]></company>
          <city><![CDATA[Phoenix]]></city>
          <state><![CDATA[AZ]]></state>
          <country><![CDATA[US]]></country>
          <postalcode><![CDATA[85003]]></postalcode>
          <description><![CDATA[Do you have 1-3 years of sales experience? Are you relentless at closing the deal? Are you ready for an exciting and high-speed career in sales? If so, we want to hear from you!

          [...]

          We provide competitive compensation, including stock options and a full benefit plan. As a fast-growing business, we offer excellent opportunities for exciting and challenging work. As our company continues to grow, you can expect unlimited career advancement! ]]></description>
          <salary><![CDATA[$50K per year]]></salary>
          <education><![CDATA[Bachelors]]></education>
          <jobtype><![CDATA[fulltime, parttime]]></jobtype>
          <category><![CDATA[Category1, Category2, CategoryN]]></category>
          <experience><![CDATA[5+ years]]></experience>
          </job>
          [...]
          </source>






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 15 '18 at 12:58









          David.JDavid.J

          566624




          566624























              0














              For Creating Auto Update / Auto Publish sites checklist are:



              1. Install WP Automatic Plugin

              2. Find RSS Feed of the site, which you want to fetch post/jobs (It is necessary to site allow to fetch post via RSS)

              3. Configure Plugin

              4. Set the interval time limit (For checking again to fetch new post/jobs)

              5. Assign the specific category to specific post /jobs

              6. Done!

              If you face any further problem, feel free to ask me.






              share|improve this answer



























                0














                For Creating Auto Update / Auto Publish sites checklist are:



                1. Install WP Automatic Plugin

                2. Find RSS Feed of the site, which you want to fetch post/jobs (It is necessary to site allow to fetch post via RSS)

                3. Configure Plugin

                4. Set the interval time limit (For checking again to fetch new post/jobs)

                5. Assign the specific category to specific post /jobs

                6. Done!

                If you face any further problem, feel free to ask me.






                share|improve this answer

























                  0












                  0








                  0







                  For Creating Auto Update / Auto Publish sites checklist are:



                  1. Install WP Automatic Plugin

                  2. Find RSS Feed of the site, which you want to fetch post/jobs (It is necessary to site allow to fetch post via RSS)

                  3. Configure Plugin

                  4. Set the interval time limit (For checking again to fetch new post/jobs)

                  5. Assign the specific category to specific post /jobs

                  6. Done!

                  If you face any further problem, feel free to ask me.






                  share|improve this answer













                  For Creating Auto Update / Auto Publish sites checklist are:



                  1. Install WP Automatic Plugin

                  2. Find RSS Feed of the site, which you want to fetch post/jobs (It is necessary to site allow to fetch post via RSS)

                  3. Configure Plugin

                  4. Set the interval time limit (For checking again to fetch new post/jobs)

                  5. Assign the specific category to specific post /jobs

                  6. Done!

                  If you face any further problem, feel free to ask me.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 15 '18 at 13:19









                  ZohaibZohaib

                  4710




                  4710



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53319862%2fwordpress-job-listing-auto-published-indeed-site%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Darth Vader #20

                      How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

                      Ondo