Thank You', 'adventureboundbasic' ), // Setting field label 'adventureboundbasic_thank_you', // Function that renders the settings field 'theme_options', // Menu slug, used to uniquely identify the page; see twentyeleven_theme_options_add_page() 'general' // Settings section. Same as the first argument in the add_settings_section() above ); /**add_settings_field( 'color_scheme', // Unique identifier for the field for this section __( 'Blog Dates
(Only Avaliable
with Purchase)', 'adventureboundbasic' ), // Setting field label 'adventureboundbasic_settings_field_color_scheme', // Function that renders the settings field 'theme_options', // Menu slug, used to uniquely identify the page; see twentyeleven_theme_options_add_page() 'general' // Settings section. Same as the first argument in the add_settings_section() above );*/ add_settings_field( 'link_color', __( 'Link Color
(Only Avaliable
with Purchase)', 'adventureboundbasic' ), 'adventureboundbasic_settings_field_link_color', 'theme_options', 'general' ); add_settings_field( 'date_option', __( 'Blog Dates
(Only Avaliable
with Purchase)', 'adventureboundbasic' ), 'adventureboundbasic_settings_field_layout', 'theme_options', 'general' ); } add_action( 'admin_init', 'adventureboundbasic_theme_options_init' ); /** * Change the capability required to save the 'twentyeleven_options' options group. * * @see twentyeleven_theme_options_init() First parameter to register_setting() is the name of the options group. * @see twentyeleven_theme_options_add_page() The edit_theme_options capability is used for viewing the page. * * By default, the options groups for all registered settings require the manage_options capability. * This filter is required to change our theme options page to edit_theme_options instead. * By default, only administrators have either of these capabilities, but the desire here is * to allow for finer-grained control for roles and users. * * @param string $capability The capability used for the page, which is manage_options by default. * @return string The capability to actually use. */ function adventureboundbasic_option_page_capability( $capability ) { return 'edit_theme_options'; } add_filter( 'option_page_capability_adventureboundbasic_options', 'adventureboundbasic_option_page_capability' ); /** * Add our theme options page to the admin menu, including some help documentation. * * This function is attached to the admin_menu action hook. * * @since Twenty Eleven 1.0 */ function adventureboundbasic_theme_options_add_page() { $theme_page = add_theme_page( __( 'Theme Options', 'adventureboundbasic' ), // Name of page __( 'Theme Options', 'adventureboundbasic' ), // Label in menu 'edit_theme_options', // Capability required 'theme_options', // Menu slug, used to uniquely identify the page 'adventureboundbasic_theme_options_render_page' // Function that renders the options page ); if ( ! $theme_page ) return; add_action( "load-$theme_page", 'adventureboundbasic_theme_options_help' ); } add_action( 'admin_menu', 'adventureboundbasic_theme_options_add_page' ); function adventureboundbasic_theme_options_help() { $help = '

' . __( 'The Adventure Bound Basic 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 Basic, does not provides the following Theme Options, they are only available with the with the premium version Adventure Bound:', 'adventureboundbasic' ) . '

' . '
    ' . '
  1. ' . __( 'Website Color: You can choose from a bunch of different images to customize the look and feel for your entire site.', 'adventureboundbasic' ) . '
  2. ' . '
  3. ' . __( 'Hide Date: You can choose the opption of not display the date on the home.', 'adventureboundbasic' ) . '
  4. ' . '
' . '

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

' . '

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

' . '

' . __( 'Adventure Bound Basic Home Page', 'adventureboundbasic' ) . '

' . '

' . __( 'The Premium Adventure Bound Home Page', 'adventureboundbasic' ) . '

' . '

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

'; $sidebar = '

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

' . '

' . __( 'Documentation on Theme Options', 'adventureboundbasic' ) . '

' . '

' . __( 'Support Forums', 'adventureboundbasic' ) . '

'; $screen = get_current_screen(); if ( method_exists( $screen, 'add_help_tab' ) ) { // WordPress 3.3 $screen->add_help_tab( array( 'title' => __( 'Overview', 'adventureboundbasic' ), 'id' => 'theme-options-help', 'content' => $help, ) ); $screen->set_help_sidebar( $sidebar ); } else { // WordPress 3.2 add_contextual_help( $screen, $help . $sidebar ); } } /** * Returns an array of color schemes registered for Twenty Eleven. * * @since Twenty Eleven 1.0 */ function adventureboundbasic_color_schemes() { $color_scheme_options = array( '2dates' => array( 'value' => '2dates', 'label' => __( '2Dates', 'adventureboundbasic' ), 'thumbnail' => get_template_directory_uri() . '/images/date.jpg', 'default_link_color' => '#d71015', ), '2no-dates' => array( 'value' => '2no-dates', 'label' => __( '2No-Dates', 'adventureboundbasic' ), 'thumbnail' => get_template_directory_uri() . '/images/no-date.jpg', 'default_link_color' => '#d71015', ), ); return apply_filters( 'adventureboundbasic_color_schemes', $color_scheme_options ); } /** * Returns an array of layout options registered for Twenty Eleven. * * @since Twenty Eleven 1.0 */ function adventureboundbasic_layouts() { $layout_options = array( 'dates' => array( 'value' => 'dates', 'label' => __( 'Dates', 'adventureboundbasic' ), 'thumbnail' => get_template_directory_uri() . '/images/date.jpg', ), 'no-dates' => array( 'value' => 'no-dates', 'label' => __( 'No-Dates', 'adventureboundbasic' ), 'thumbnail' => get_template_directory_uri() . '/images/no-date.jpg', ), /*'content' => array( 'value' => 'content', 'label' => __( 'One-column, no sidebar', 'adventureboundbasic' ), 'thumbnail' => get_template_directory_uri() . '/inc/images/content.png', ),*/ ); return apply_filters( 'adventureboundbasic_layouts', $layout_options ); } /** * Returns the default options for Twenty Eleven. * * @since Twenty Eleven 1.0 */ function adventureboundbasic_get_default_theme_options() { $default_theme_options = array( 'color_scheme' => 'dates', 'link_color' => adventureboundbasic_get_default_link_color( 'dates' ), 'theme_layout' => 'content-sidebar', ); if ( is_rtl() ) $default_theme_options['theme_layout'] = 'sidebar-content'; return apply_filters( 'adventureboundbasic_default_theme_options', $default_theme_options ); } /** * Returns the default link color for Twenty Eleven, based on color scheme. * * @since Twenty Eleven 1.0 * * @param $string $color_scheme Color scheme. Defaults to the active color scheme. * @return $string Color. */ function adventureboundbasic_get_default_link_color( $color_scheme = null ) { if ( null === $color_scheme ) { $options = adventureboundbasic_get_theme_options(); $color_scheme = $options['color_scheme']; } $color_schemes = adventureboundbasic_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. * * @since Twenty Eleven 1.0 */ function adventureboundbasic_get_theme_options() { return get_option( 'adventureboundbasic_theme_options', adventureboundbasic_get_default_theme_options() ); } /** * Renders the Thank You setting field. * * @since Eric Schwarz edited this huge pain in my */ function adventureboundbasic_thank_you() { ?>

I would like to "Thank You" for supporting my WordPress Theme "Adventure Bound Basic."

I also 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 want to show me your support of the Adventure Bound Basic theme or would really 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 Website Color Base (Anything that is that particular Red)
  3. Customize the Menu at the Bottom
  4. Additional Search Engine Optimization
  5. Change the Secondary Menu's Image (Coming Soon)
  6. The inclution of the PhotoShop Images Files
  7. Code for Website 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


' . adventureboundbasic_get_default_link_color( $options['color_scheme'] ) . '' ); ?>

'widget%d', 'id' => 'widget', 'description' => 'Widgets in this area will be shown below the the content of every page.', '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 print_comment($comment, $args, $depth) { $GLOBALS['comment'] = $comment; ?>
>
commented
comment_approved == '0') : ?>
$depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
at