How to integrate JobRoller features on some existing web page
Hello,
I am trying to explore if jobrollder theme can be used in a simple / modular way .
I just want to use JobRoller features on demand into my any web page in a simple way without using the default rigid frame/structure of job roller theme
Let me simplify for more clarity /discussion :-
(1) Say I have existing web page somepage.php on running web site
(2) At present any time to integrate wordpress into that page I use following code at the top of that page :-
<?php
/* Short and sweet */
define('WP_USE_THEMES', false);
require('./
wp-blog-header.php');
?>
And now to display last 10 post i use the following code which perfectly work well:-
<?php query_posts('showposts=10'); ?>
<ul>
<?php while (have_posts()): the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
</li>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul>
and so on..
As you can see how easy it is to use wordpress on any web page on demand.
In the same way I want to use Job Roller features on demand on my existing web pages so that at any suitable location as per the need I can use the required features of jobrollder like latestjob posting / features posting /job category etc for better management.
So my question is that is it possible to integrate job roller feature in that modular way on my existing page .Just I want to include few files of jobroller core file and than want to use only few line of code to display latest jobs / features / cateogry where ever required .
Regards,
Ajay
OBizTek