Wordpress job listing auto published indeed site

Multi tool use
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
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
add a comment |
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
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
add a comment |
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
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
wordpress
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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>
add a comment |
For Creating Auto Update / Auto Publish sites checklist are:
- Install WP Automatic Plugin
- Find RSS Feed of the site, which you want to fetch post/jobs (It is necessary to site allow to fetch post via RSS)
- Configure Plugin
- Set the interval time limit (For checking again to fetch new post/jobs)
- Assign the specific category to specific post /jobs
- Done!
If you face any further problem, feel free to ask me.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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>
add a comment |
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>
add a comment |
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>
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>
answered Nov 15 '18 at 12:58
David.JDavid.J
566624
566624
add a comment |
add a comment |
For Creating Auto Update / Auto Publish sites checklist are:
- Install WP Automatic Plugin
- Find RSS Feed of the site, which you want to fetch post/jobs (It is necessary to site allow to fetch post via RSS)
- Configure Plugin
- Set the interval time limit (For checking again to fetch new post/jobs)
- Assign the specific category to specific post /jobs
- Done!
If you face any further problem, feel free to ask me.
add a comment |
For Creating Auto Update / Auto Publish sites checklist are:
- Install WP Automatic Plugin
- Find RSS Feed of the site, which you want to fetch post/jobs (It is necessary to site allow to fetch post via RSS)
- Configure Plugin
- Set the interval time limit (For checking again to fetch new post/jobs)
- Assign the specific category to specific post /jobs
- Done!
If you face any further problem, feel free to ask me.
add a comment |
For Creating Auto Update / Auto Publish sites checklist are:
- Install WP Automatic Plugin
- Find RSS Feed of the site, which you want to fetch post/jobs (It is necessary to site allow to fetch post via RSS)
- Configure Plugin
- Set the interval time limit (For checking again to fetch new post/jobs)
- Assign the specific category to specific post /jobs
- Done!
If you face any further problem, feel free to ask me.
For Creating Auto Update / Auto Publish sites checklist are:
- Install WP Automatic Plugin
- Find RSS Feed of the site, which you want to fetch post/jobs (It is necessary to site allow to fetch post via RSS)
- Configure Plugin
- Set the interval time limit (For checking again to fetch new post/jobs)
- Assign the specific category to specific post /jobs
- Done!
If you face any further problem, feel free to ask me.
answered Nov 15 '18 at 13:19
ZohaibZohaib
4710
4710
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
84Hfb10M,UOQpjugRqWuEa6ph3uNtnO4mS,V4,CGWyYSp7G0 kvihwEc RU,Pa5Vm,ekAtLt
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