Tagged Questions
0
votes
2answers
264 views
Category List in Theme Options Page
I am trying to create a multi-select category list in a theme options page and everything shows up but when i save the options only the last option from the multi-select box that is selected gets ...
0
votes
1answer
269 views
List of categories instead of dropdown menu selector in admin options
I am using the following code for in admin area for theme options
$categories = get_categories('hide_empty=0&orderby=name');
$tz_wp_cats = array();
foreach ($categories as $category_list ...