| 1 | Index: theme-options.php |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- theme-options.php (revision 17826) |
|---|
| 4 | +++ theme-options.php (working copy) |
|---|
| 5 | @@ -101,21 +101,36 @@ |
|---|
| 6 | */ |
|---|
| 7 | function twentyeleven_layouts() { |
|---|
| 8 | $layout_options = array( |
|---|
| 9 | + 'content' => array( |
|---|
| 10 | + 'value' => 'content', |
|---|
| 11 | + 'label' => __( 'One-column, no Sidebar', 'twentyeleven' ), |
|---|
| 12 | + 'thumbnail' => get_template_directory_uri() . '/inc/images/content.png', |
|---|
| 13 | + ), |
|---|
| 14 | 'content-sidebar' => array( |
|---|
| 15 | 'value' => 'content-sidebar', |
|---|
| 16 | - 'label' => __( 'Content on left', 'twentyeleven' ), |
|---|
| 17 | + 'label' => __( 'Content on left, Sidebar on right', 'twentyeleven' ), |
|---|
| 18 | 'thumbnail' => get_template_directory_uri() . '/inc/images/content-sidebar.png', |
|---|
| 19 | ), |
|---|
| 20 | 'sidebar-content' => array( |
|---|
| 21 | 'value' => 'sidebar-content', |
|---|
| 22 | - 'label' => __( 'Content on right', 'twentyeleven' ), |
|---|
| 23 | + 'label' => __( 'Content on right, Sidebar on left', 'twentyeleven' ), |
|---|
| 24 | 'thumbnail' => get_template_directory_uri() . '/inc/images/sidebar-content.png', |
|---|
| 25 | ), |
|---|
| 26 | - 'content' => array( |
|---|
| 27 | - 'value' => 'content', |
|---|
| 28 | - 'label' => __( 'One-column, no Sidebar', 'twentyeleven' ), |
|---|
| 29 | - 'thumbnail' => get_template_directory_uri() . '/inc/images/content.png', |
|---|
| 30 | + 'sidebar-content-sidebar' => array( |
|---|
| 31 | + 'value' => 'sidebar-content-sidebar', |
|---|
| 32 | + 'label' => __( 'Content on center, two Sidbars', 'twentyeleven' ), |
|---|
| 33 | + 'thumbnail' => get_template_directory_uri() . '/inc/images/sidebar-content-sidebar.png', |
|---|
| 34 | ), |
|---|
| 35 | + 'content-sidebar-sidebar' => array( |
|---|
| 36 | + 'value' => 'content-sidebar-sidebar', |
|---|
| 37 | + 'label' => __( 'Content on left, two Sidebar on right', 'twentyeleven' ), |
|---|
| 38 | + 'thumbnail' => get_template_directory_uri() . '/inc/images/content-sidebar-sidebar.png', |
|---|
| 39 | + ), |
|---|
| 40 | + 'sidebar-sidebar-content' => array( |
|---|
| 41 | + 'value' => 'sidebar-sidebar-content', |
|---|
| 42 | + 'label' => __( 'Content on right, two Sidebar on left', 'twentyeleven' ), |
|---|
| 43 | + 'thumbnail' => get_template_directory_uri() . '/inc/images/sidebar-sidebar-content.png', |
|---|
| 44 | + ), |
|---|
| 45 | ); |
|---|
| 46 | |
|---|
| 47 | return apply_filters( 'twentyeleven_layouts', $layout_options ); |
|---|