' . __( 'The Adventure Bound Bound Theme by Eric Schwarz provides customization options that are grouped together on the Theme Options screen. If you change themes, options may change or disappear, as they are theme-specific. Your current theme, Adventure Bound, provides the following Theme Options:', 'adventurebound' ) . '

' . '
    ' . '
  1. ' . __( 'Menu Image Color: You can choose from a bunch of different images to change the look and feel of the menu for your site.', 'adventurebound' ) . '
  2. ' . '
  3. ' . __( 'Link Color: You can choose the color used for text links on your site. You can enter the HTML color or hex code, or you can choose visually by clicking the "Select a Color" button to pick from a color wheel.', 'adventurebound' ) . '
  4. ' . '
  5. ' . __( 'Default Layout: You can choose if you want your site’s default layout to have a sidebar on the left, the right, or not at all.', 'adventurebound' ) . '
  6. ' . '
  7. ' . __( 'Menu Layout: You can choose if you want your site’s default layout to have a sidebar on the left, the right, or not at all.', 'adventurebound' ) . '
  8. ' . '
  9. ' . __( 'Contrast Ratio: Incase your have problems with the custom background making your website difficult to read, I have include 3 different content darkness to fix just such a problem.', 'adventurebound' ) . '
  10. ' . '
' . '

' . __( 'Remember to click "Save Changes" to save any changes you have made to the theme options.', 'adventurebound' ) . '

' . '

' . __( 'For more information:', 'adventurebound' ) . '

' . '

' . __( 'Adventure Bound Home Page', 'adventurebound' ) . '

' . '

' . __( 'Contact Eric Schwarz', 'adventurebound' ) . '

'; add_contextual_help( $theme_page, $help ); } add_action( 'admin_menu', 'adventurebound_theme_options_add_page' ); /** * Returns an array of layout options registered for Advebture Bound. * */ function adventurebound_layouts() { $layout_options = array( 'dates' => array( 'value' => 'dates', 'label' => __( 'Dates in Upper Right Corner', 'adventurebound' ), 'thumbnail' => get_template_directory_uri() . '/images/date.jpg',), 'no-dates' => array( 'value' => 'no-dates', 'label' => __( 'No Dates are Displayed', 'adventurebound' ), 'thumbnail' => get_template_directory_uri() . '/images/no-date.jpg',), ); return apply_filters( 'adventurebound_layouts', $layout_options ); } /** * Returns an array of color schemes registered for Adventure Bound. * */ function adventurebound_color_schemes() { $color_scheme_options = array( 'red' => array('value' => 'red','label' => __( 'Red', 'adventurebound' ),'thumbnail' => get_template_directory_uri() . '/images/red.png','default_link_color' => '#d71015',),); return apply_filters( 'adventurebound_color_schemes', $color_scheme_options );} /** * Returns the default options for Twenty Eleven. * */ function adventurebound_get_default_theme_options() { $default_theme_options = array( 'link_color' => adventurebound_get_default_link_color( 'red' ), 'theme_layout' => 'dates',); if ( is_rtl() ) $default_theme_options['theme_layout'] = 'dates'; return apply_filters( 'adventurebound_default_theme_options', $default_theme_options ); } /** * Returns the default link color for Adventure Bound, based on color scheme. * * @param $string $color_scheme Color scheme. Defaults to the active color scheme. * @return $string Color. */ function adventurebound_get_default_link_color( $color_scheme = null ) { if ( null === $color_scheme ) { $options = adventurebound_get_theme_options(); $color_scheme = $options['color_scheme']; } $color_schemes = adventurebound_color_schemes(); if ( ! isset( $color_schemes[ $color_scheme ] ) ) return false; return $color_schemes[ $color_scheme ]['default_link_color']; } /** * Returns the options array for Adventure Bound. * */ function adventurebound_get_theme_options() { return get_option( 'adventurebound_theme_options', adventurebound_get_default_theme_options() ); } /** * Returns the options array for Adventure Bound. * */ function adventurebound_theme_options_render_page() { ?>

Information

Thank you for supporting my WordPress Theme "Adventure Bound Basic."

I would like to encourage you to regularly check for updates because I spend a lot of time improving and fixing the code so that it just simply keeps working better. You'll find the blead-edge downloads Here.

If you would really like to show me your support of the Adventure Bound Basic theme or would real like to be able to use the additional features below that the premium version offers, just quick pick up your own copy by visiting the Adventure Bound Page.

  1. Drop Down-Menu's
  2. Change Link Colors
  3. Secondary Menu at the Bottom
  4. Additional Search Engine Optimization
  5. Change the Secondary Menu's Image
  6. The inclution of the PhotoShop Images Files
  7. Code for Favorite Icons included.
  8. My Support with minor Modifications to the Theme
  9. My Support with any questions or problems you may have, Contact me here
  10. AND MORE FEATURES TO COME SOON AT NO ADDTIONAL CHARGE!

Finally, I would like to get the word out on my orignal Premium Theme, "Adventure+." This is my first theme I created for WordPress and have hundreds of people that really enjoy the theme. Check out the demo page of the theme Adventure+ at http://adventure.schwarttzy.com/, and if you like it be sure to put a copy in your shopping cart.

If you have any questions, comments, problems, or suggestions please feel free to Contact Me Here.

Thank you again for your Support,

Eric J. Schwarz

Link Color
(Only Avaliable
with Purchase)', 'adventurebound' ); ?>
' . adventurebound_get_default_link_color( $options['color_scheme'] ) . '' ); ?>
Blog Dates
(Only Avaliable
with Purchase)', 'adventurebound' ); ?>