Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    Here is a quick modification to my plugin that should do what you need:

    Find this line in the script:

    if ($ddpl_type == 'jump') {

    Before it, add this:

    $t_out .= $ddpl_before_list . '<ul>';
    foreach ($post_list as $p) {
    	$t_out .= '<li><a href="' . get_permalink($p->ID) . '">' . $p->post_title . '</a></li>';
    }
    $t_out .= '</ul>' . $ddpl_after_list;
    return $t_out;

    It just creates a simple list. You can still use the options for code before/after the list from the options panel.

    Thread Starter icekid

    (@icekid)

    The creator of that plugin him/herself. Thanks mate worked like a charm. You have no idea how grateful I am. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Categories List’ is closed to new replies.