[Plugin: Job Manager] Widget – latest jobs
-
Is there anyway to create a lastest jobs widget?
In the site I am working on I was using posts as jobs until I found your wonderfull plugin.
Using the php-code-widget I could list the latest jobs from a category by using this php:<ul> <?php query_posts('cat=3'.'&posts_per_page=5'); if (have_posts()) { while (have_posts()) { the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php } } else { echo '<li>No jobs at the moment</li>'; } ?> </ul>
I am sorry that I do not understand php enough to work out a way to adapt the code in such a way that I could use it with job manager jobs. I suppose there must be more users who would appreciate a way to do this.. Could someone with more php skills give me some clue’s ??
ps. pento I sent you an e-mail about translating to dutch, did you receive it ?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘[Plugin: Job Manager] Widget – latest jobs’ is closed to new replies.