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

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -