Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Brian

    (@brianjessee)

    You would have to custom code it. There is not coding for a category display.

    Brian

    Thread Starter varundev24

    (@varundev24)

    ok, i go it
    <?php
    $querycoupon = new WP_Query ( ‘post_status=publish&post_type=cctor_coupon’ );
    if ($querycoupon->have_posts ()) {
    ?>
    <?php

    $values = array (
    ‘orderby’ => ‘name’,
    ‘order’ => ‘ASC’,
    ‘echo’ => 1,
    ‘selected’ => $kat = get_query_var ( ‘cat’ ),
    ‘name’ => ‘cat’,
    ‘id’ => ”,
    ‘taxonomy’ => ‘cctor_coupon_category’,
    ‘title_li’ => $title,
    ‘depth’ => 1
    );
    }
    ?>
    <?php wp_list_categories($values); ?>

    Thank you

    Plugin Author Brian

    (@brianjessee)

    That works, thanks for sharing.

    Brian

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘categories list in menu’ is closed to new replies.