appearance -> header and remove default header image. Amdhas WordPress theme the real classical theme element with logical element, have 8 different layout for your homepage. Also you can build site with complex design or simple design, a lot of options for element here. Just using simple variable metodh but you can build elegant, responsive, mobile site, fixed width, profesional site, personal blog and great site. So...lets start with amdhas classical theme and enjoy.', 'amdhas'); ?>

$name ) : if ( $tab == $current ) : $links[] = "$name"; else : $links[] = "$name"; endif; endforeach; echo ''; } function amdhas_display_setting( $setting = array() ) { $amdhas_options = get_option('amdhas_options'); if ( ! isset( $amdhas_options[$setting['id']] ) ) $amdhas_options[$setting['id']] = $setting['std']; switch ( $setting['type'] ) { case 'text': echo ""; echo '
'; break; case 'textsize': echo ""; echo '
'; break; case 'textarea': echo ""; echo '
'; break; case 'checkbox': echo "'; break; case "color": echo '
'; echo ""; echo '
'; break; case 'ched': echo "'; break; case 'select': echo ""; echo '
'; break; case 'radio': foreach ( $setting['choices'] as $value => $label ) { echo " " . $label . "
"; } break; case 'image': echo "

"; echo ''; echo ''; echo ' '; break; default: echo ""; echo '
'; break; } } function amdhas_register_settings() { if ( isset ( $_GET['tab'] ) ) : $tab = $_GET['tab']; else: $tab = 'general'; endif; $amdhas_sections = amdhas_get_sections($tab); $amdhas_settings = amdhas_get_settings($tab); register_setting( 'amdhas_options', 'amdhas_options', 'amdhas_options_validate' ); foreach ($amdhas_sections as $section) { add_settings_section($section['id'], $section['name'], 'amdhas_section_text', 'amdhas'); } foreach ($amdhas_settings as $setting) { add_settings_field($setting['id'], $setting['name'], 'amdhas_display_setting', 'amdhas', $setting['section'], $setting); } } function amdhas_sanitize_hex( $hex, $default = '' ) { if ( $amdhas_options( $hex ) ) { return $hex; } return $default; } function amdhas_validate_hex( $hex ) { $hex = trim( $hex ); if ( 0 === strpos( $hex, '#' ) ) { $hex = substr( $hex, 1 ); } elseif ( 0 === strpos( $hex, '%23' ) ) { $hex = substr( $hex, 3 ); } if ( 0 === preg_match( '/^[0-9a-fA-F]{6}$/', $hex ) ) { return false; } else { return true; } } function amdhas_sanitize_color( $input ) { $output = wp_parse_args( $input, array('color' => '') ); $output['color'] = apply_filters( 'amdhas_sanitize_hex', $input['color'] ); return $output; } add_filter( 'amdhas_sanitize_color', 'amdhas_sanitize_color' ); function amdhas_options_validate($input) { $amdhas_options = get_option('amdhas_options'); if ( isset ( $input['validation-submit'] ) ) : $tab = $input['validation-submit']; else: $tab = 'general'; endif; $validate_settings = amdhas_get_settings($tab); foreach ($validate_settings as $setting) { if ($setting['type'] == 'checkbox' and !isset($input[$setting['id']]) ) { $amdhas_options[$setting['id']] = 'false'; $input[$setting['id']] = ( $input[$setting['id']] == 1 ? 1 : 0 ); } elseif ($setting['type'] == 'radio' and !isset($input[$setting['id']]) ) { $amdhas_options[$setting['id']] = 1; } elseif ($setting['type'] == 'textarea') { $amdhas_options[$setting['id']] = wp_kses_stripslashes(trim($input[$setting['id']])); } else { $amdhas_options[$setting['id']] = esc_textarea(trim($input[$setting['id']])); } } return $amdhas_options; } function amdhas_section_text() {} ?>