mirror of
https://github.com/Frumph/comic-easel.git
synced 2026-07-18 18:34:32 -04:00
Allow showing the entire list for which chapter to choose to show on the home page option
This commit is contained in:
+10
-9
@@ -116,15 +116,16 @@
|
||||
<th scope="row"><label for="chapter_on_home"><?php _e('What chapter would you like to display on the home page?','comiceasel'); ?></label></th>
|
||||
<td>
|
||||
<?php $args = array(
|
||||
'show_option_all' => 'All Chapters',
|
||||
'orderby' => 'menu_order',
|
||||
'order' => 'ASC',
|
||||
'selected' => $ceo_options['chapter_on_home'],
|
||||
'name' => 'chapter_on_home',
|
||||
'id' => 'chapter_on_home',
|
||||
'class' => 'postform',
|
||||
'taxonomy' => 'chapters',
|
||||
'hide_if_empty' => true,
|
||||
'show_option_all' => 'All Chapters',
|
||||
'orderby' => 'menu_order',
|
||||
'order' => 'ASC',
|
||||
'selected' => $ceo_options['chapter_on_home'],
|
||||
'name' => 'chapter_on_home',
|
||||
'id' => 'chapter_on_home',
|
||||
'class' => 'postform',
|
||||
'taxonomy' => 'chapters',
|
||||
'hide_if_empty' => false,
|
||||
'heirarchel' => 1
|
||||
);
|
||||
wp_dropdown_categories($args);
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user