id ) { $contextual_help = '

' . __( 'For basic support, please post in the WordPress forums.', 'brand-new-day' ) . '

'; $contextual_help .= '

' . __( 'Theme Style', 'brand-new-day' ) . ' - ' . __( 'This is where you can choose the overall look and feel of your blog. Defaults to Daylight.', 'brand-new-day' ) . '

'; $contextual_help .= '

' . __( 'Sidebar Options', 'brand-new-day' ) . ' - ' . __( 'Choose whether you want the sidebar aligned to the right or left, or hide the sidebar entirely. Defaults to Right Sidebar.', 'brand-new-day' ) . '

'; $contextual_help .= '

' . __( 'Remove Search', 'brand-new-day' ) . ' - ' . __( 'Checking this removes the default search box in the upper-right-hand corner of the theme.', 'brand-new-day' ) . '

'; $contextual_help .= '

' . __( 'Enable Simple Blog Mode', 'brand-new-day' ) . ' - ' . __( 'Checking this removes the sidebar (regardless of previous Sidebar Options settings), the search bar (regardless of previous Remove Search setting) and narrows the content column. Simple Blog Mode is great for bringing focus to the post content. Ideal for "microblogs" or Tumblr-style websites.', 'brand-new-day' ) . '

'; $contextual_help .= '

' . __( 'Custom CSS', 'brand-new-day' ) . ' - ' . __( 'You can override the theme\'s default CSS by putting your own code here. It should be in the format:', 'brand-new-day' ) . '

'; $contextual_help .= '
.some-class { width: 100px; }
'; $contextual_help .= '
#some-id { background-color: #fff; }
'; $contextual_help .= '

' . __( 'Replacing any classes, ID\'s, etc. with the ones you want to override, and within them the attributes you want to change.', 'brand-new-day' ) . '

'; $contextual_help .= '

' . __( 'Support Caroline Themes/Hide Donate Button', 'brand-new-day' ) . ' - ' . __( 'If you like my themes and find them useful, please donate! Checking the box will hide this information.', 'brand-new-day' ) . '

'; $contextual_help .= '

' . __( 'Visit Caroline Themes for more free WordPress themes!', 'brand-new-day' ) . '

'; $screen->add_help_tab( array( 'id' => 'bnd-theme-options', 'title' => 'Theme Options', 'content' => $contextual_help ) ); } } /** * Create arrays for our theme styles and sidebar options */ $bnd_themestyle_options = array( 'daylight' => array( 'value' => 'daylight', 'label' => __( 'Daylight', 'brand-new-day' ) ), 'nightlight' => array( 'value' => 'nightlight', 'label' => __( 'Nightlight', 'brand-new-day' ) ), 'winterlight' => array( 'value' => 'winterlight', 'label' => __( 'Winterlight', 'brand-new-day' ) ), 'autumnlight' => array( 'value' => 'autumnlight', 'label' => __( 'Autumnlight', 'brand-new-day' ) ) ); $bnd_sidebar_options = array( 'right' => array( 'value' => 'right', 'label' => __( 'Right Sidebar', 'brand-new-day' ) ), 'left' => array( 'value' => 'left', 'label' => __( 'Left Sidebar', 'brand-new-day' ) ), 'none' => array( 'value' => 'none', 'label' => __( 'No Sidebar', 'brand-new-day' ) ) ); /** * Create the options page */ function theme_options_do_page() { global $bnd_themestyle_options, $bnd_sidebar_options; if ( ! isset( $_REQUEST['settings-updated'] ) ) $_REQUEST['settings-updated'] = false; ?>
" . get_current_theme() . __( ' Theme Options', 'brand-new-day' ) . ""; ?>


/>
/>

/>
/>