' . __( 'The Adventure+ 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+, provides the following Theme Options:', 'schwarttzy' ) . '

' . '
    ' . '
  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.', 'schwarttzy' ) . '
  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.', 'schwarttzy' ) . '
  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.', 'schwarttzy' ) . '
  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.', 'schwarttzy' ) . '
  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.', 'schwarttzy' ) . '
  10. ' . '
' . '

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

' . '

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

' . '

' . __( 'Adventure+ Home Page', 'schwarttzy' ) . '

' . '

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

'; add_contextual_help( $theme_page, $help ); } add_action( 'admin_menu', 'schwarttzy_theme_options_add_page' ); /** * Returns an array of color schemes registered for Adventure+. * */ function schwarttzy_color_schemes() { $color_scheme_options = array( 'purple' => array('value' => 'purple','label' => __( 'Purple', 'schwarttzy' ),'thumbnail' => get_template_directory_uri() . '/images/purp.png','default_link_color' => '#0b6492',), 'red' => array('value' => 'red','label' => __( 'Red', 'schwarttzy' ),'thumbnail' => get_template_directory_uri() . '/images/red.png','default_link_color' => '#b20c1a',), 'green' => array('value' => 'green','label' => __( 'Green', 'schwarttzy' ),'thumbnail' => get_template_directory_uri() . '/images/green.png','default_link_color' => '#542912',), 'blue' => array('value' => 'blue','label' => __( 'Blue', 'schwarttzy' ),'thumbnail' => get_template_directory_uri() . '/images/blue.png','default_link_color' => '#c63b00',), 'teal' => array('value' => 'teal','label' => __( 'Teal', 'schwarttzy' ),'thumbnail' => get_template_directory_uri() . '/images/teal.png','default_link_color' => '#e6e600',), 'pink' => array('value' => 'pink','label' => __( 'Pink', 'schwarttzy' ),'thumbnail' => get_template_directory_uri() . '/images/pink.png','default_link_color' => '#650898',),); return apply_filters( 'schwarttzy_color_schemes', $color_scheme_options );} /** * Returns an array of layout options registered for Twenty Eleven. * */ function schwarttzy_layouts() { $layout_options = array( 'content-sidebar' => array( 'value' => 'content-sidebar', 'label' => __( 'Content on left', 'schwarttzy' ), 'thumbnail' => get_template_directory_uri() . '/images/content-sidebar.png',), 'sidebar-content' => array( 'value' => 'sidebar-content', 'label' => __( 'Content on right', 'schwarttzy' ), 'thumbnail' => get_template_directory_uri() . '/images/sidebar-content.png',), 'content' => array( 'value' => 'content', 'label' => __( 'One-column, no sidebar (Coming Soon)', 'schwarttzy' ), 'thumbnail' => get_template_directory_uri() . '/images/content.png',), ); return apply_filters( 'schwarttzy_layouts', $layout_options ); } function schwarttzy_menu() { $menu_options = array( 'bottom' => array( 'value' => 'bottom', 'label' => __( 'Menu on Bottom', 'schwarttzy' ), 'thumbnail' => get_template_directory_uri() . '/images/bottom.png',), 'top' => array( 'value' => 'top', 'label' => __( 'Menu on Top', 'schwarttzy' ), 'thumbnail' => get_template_directory_uri() . '/images/content-sidebar.png',), ); return apply_filters( 'schwarttzy_menu', $menu_options ); } function schwarttzy_contrast() { $contrast_options = array( 'seventyfive' => array( 'value' => 'seventyfive', 'label' => __( 'Contrast #B4B09D', 'schwarttzy' ), 'thumbnail' => get_template_directory_uri() . '/images/75.png', ), 'eighty' => array( 'value' => 'eighty', 'label' => __( 'Contrast #343131', 'schwarttzy' ), 'thumbnail' => get_template_directory_uri() . '/images/80.png', ), 'eightyfive' => array( 'value' => 'eightyfive', 'label' => __( 'Contrast #5E5C53', 'schwarttzy' ), 'thumbnail' => get_template_directory_uri() . '/images/85.png',), ); return apply_filters( 'schwarttzy_contrast', $contrast_options ); } /** * Returns the default options for Twenty Eleven. * */ function schwarttzy_get_default_theme_options() { $default_theme_options = array( 'color_scheme' => 'purple', 'link_color' => schwarttzy_get_default_link_color( 'purple' ), 'theme_layout' => 'content-sidebar', 'menu_layout' => 'bottom', 'contrast_layout' => 'seventyfive',); if ( is_rtl() ) $default_theme_options['theme_layout'] = 'sidebar-content'; if ( is_rtl() ) $default_theme_options['menu_layout'] = 'bottom'; if ( is_rtl() ) $default_theme_options['contrast_layout'] = 'seventyfive'; return apply_filters( 'schwarttzy_default_theme_options', $default_theme_options ); } /** * Returns the default link color for Twenty Eleven, based on color scheme. * * @param $string $color_scheme Color scheme. Defaults to the active color scheme. * @return $string Color. */ function schwarttzy_get_default_link_color( $color_scheme = null ) { if ( null === $color_scheme ) { $options = schwarttzy_get_theme_options(); $color_scheme = $options['color_scheme']; } $color_schemes = schwarttzy_color_schemes(); if ( ! isset( $color_schemes[ $color_scheme ] ) ) return false; return $color_schemes[ $color_scheme ]['default_link_color']; } /** * Returns the options array for Twenty Eleven. * */ function schwarttzy_get_theme_options() { return get_option( 'schwarttzy_theme_options', schwarttzy_get_default_theme_options() ); } /** * Returns the options array for Twenty Eleven. * */ function schwarttzy_theme_options_render_page() { ?>

Information

Thank you for supporting my WordPress Theme Adventure.

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. If you would really like to show me your support of the Adventure theme or would like to be able to use the additional features below, just quick pick up your own copy by visiting the Adventure+ Page. With the addition of all the features from purchasing Adventure+, I also help out with small customizations of the theme and I lend my knowledge of WordPress to you for any question or support you may need.

Finally, I would like to get the word out on my Premium Theme "Adventure Bound." This very theme is the same theme that runs my own personal website right now (9/26/2011). So, if you want, hop on over to my website, http://Schwarttzy.com/, check out the theme in action, 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

' . schwarttzy_get_default_link_color( $options['color_scheme'] ) . '' ); ?>
(Only Avaliable in Adventure+)', 'schwarttzy' ); ?>
(Only Avaliable in Adventure+)', 'schwarttzy' ); ?>
(Only Avaliable in Adventure+)', 'schwarttzy' ); ?>
'SideBar', 'id' => 'sidebar', 'description' => 'Widgets in this area will be shown in the sidebar.', 'before_widget' => '', 'after_widget' => '', 'before_title' => '

', 'after_title' => '

', )); function is_sidebar_active($index) { global $wp_registered_sidebars; $widgetcolums = wp_get_sidebars_widgets(); if ($widgetcolums[$index]) return true; return false; } function new_excerpt_more($more) { return '....'; } add_filter('excerpt_more', 'new_excerpt_more'); function new_excerpt_length($length) {return 250;} add_filter('excerpt_length', 'new_excerpt_length'); add_custom_background(); add_theme_support( 'post-thumbnails', array( 'post', 'page' ) ); add_image_size( 'page-thumbnail', 740, 9999, true ); function print_comment($comment, $args, $depth) { $GLOBALS['comment'] = $comment; ?>
>
commented
comment_approved == '0') : ?>
$depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
at