• with wp_list_categories is there a way to show when there are new post in the category? I’ve tried:

    wp_list_categories(‘orderby=id&show_last_updated=1&include=55,21,51,49,53,54,52,50,56&title_li=<h2>’ . __(‘Category names’). ‘</h2>’ );?>

    but the show_last_updated doesn’t do anything. Basically I just want some sort of notification next to the category name showing that there is a new entery. Wheter is the date of the last update or a “new” every time there is a new post. Any thoughts?

Viewing 2 replies - 1 through 2 (of 2 total)
  • show_last_updated does not work for me, either. In the Codex, it’s called “show_last_update” in one place, but that may be a typo. Anyway, it did not work either.

    Anybody figure out how to get show_last_updated to work?

    UPDATE: I have a limited understanding, but I THINK this is a WP bug/issue that was filed in the bug tracker about a year ago with no activity for the past 11 months:

    https://trac.www.ads-software.com/ticket/5029

    this code work for me

    get_categories( 'orderby=rand()&hide_empty=1&include_last_update_time=1&hierarchical=1&number=6&exclude=5,25);

    i simply tried to overwrite the orderby functions with a different possible options [rand()];
    i hope this help to solve the bug.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Displaying new post in category list’ is closed to new replies.