php - How can I create a checked listbox of Wordpress categories? -


the first thing tried following

<input type="checkbox" id="check1" />     <label for="check1">          <ul id="selectable0">               <li><?php wp_list_cats(); ?></li>          </ul> </label> 

this creates single checkbox. want have listbox checkbox beside each item.

<?php $categories = get_categories(); foreach ($categories $category) { ?> <input type="checkbox" name="check" value="<?php echo $category->cat_id; ?>"><?php echo $category->cat_name;?><br> <?php } ?> 

Comments

Popular posts from this blog

Winapi c++: DialogBox hangs when breaking a loop -

vb.net - Font adding using PDFsharp -

javascript - jQuery iScroll clickable list elements while retaining scroll? -