Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Cena (a11n)

    (@cena)

    Hi @mluppert ,

    > shows the different job categories and the amount of active listings.

    That would be mostly dependent upon your theme, rather than WPJM itself. ??

    Otherwise it would be dependent upon custom code, which is outside our scope of support, I’m afraid.

    Best,
    Cena

    Thread Starter mluppert

    (@mluppert)

    Hey, thanks for the reply

    So, do I understand correctly, that none of your Addons are capable of producing such a job-type-navigation?

    I would have to find a theme, that already custom coded such a navigation?

    Cheers

    Hello,

    To display the categories of offers, you have the shortcode

    <? Php echo do_shortcode (‘[list_categories]’); ?> “

    And to indicate the numbers of offers on your website I used this

    <?php
    $query = new WP_Query( array(‘post_type’ => ‘job_listing’,’meta_key’ => ‘_filled’, ‘meta_value’ => 0 ) );
    echo $query->found_posts;
    ?>

    I don’t know if that can help you.

    cordially

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Job-Categories in Sidebar’ is closed to new replies.