__( 'Pages Navigation', 'Basically' ), 'header-cats' => __( 'Categories Navigation', 'Basically' ) ) ); } // Sidebar Function if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Sidebar', 'before_title' => '

', 'after_title' => '

', )); } // Custom Header Functions define('HEADER_TEXTCOLOR', ''); define('HEADER_IMAGE', '%s/images/header.png'); // %s is theme dir uri define('HEADER_IMAGE_WIDTH', 950); define('HEADER_IMAGE_HEIGHT', 135); define( 'NO_HEADER_TEXT', true ); function Basically_admin_header_style() { ?> '; } add_action('login_head', 'Basically_custom_login'); } // Remove un-Needed content from the wp_head - http://wpshout.com/wordpress-functions-php/ remove_action('wp_head', 'rsd_link'); remove_action('wp_head', 'wp_generator'); remove_action('wp_head', 'feed_links', 2); remove_action('wp_head', 'index_rel_link'); remove_action('wp_head', 'wlwmanifest_link'); remove_action('wp_head', 'feed_links_extra', 3); remove_action('wp_head', 'start_post_rel_link', 10, 0); remove_action('wp_head', 'parent_post_rel_link', 10, 0); remove_action('wp_head', 'adjacent_posts_rel_link', 10, 0); // Breadcrumbs Function - http://dimox.net/wordpress-breadcrumbs-without-a-plugin/ function Basically_breadcrumbs() { $delimiter = '»'; $home = 'Home'; // text for the 'Home' link $before = ''; // tag before the current crumb $after = ''; // tag after the current crumb if ( !is_home() && !is_front_page() || is_paged() ) { echo '
'; global $post; $homeLink = home_url(); echo '' . $home . ' ' . $delimiter . ' '; if ( is_category() ) { global $wp_query; $cat_obj = $wp_query->get_queried_object(); $thisCat = $cat_obj->term_id; $thisCat = get_category($thisCat); $parentCat = get_category($thisCat->parent); if ($thisCat->parent != 0) echo(get_category_parents($parentCat, TRUE, ' ' . $delimiter . ' ')); echo $before . 'Archive by category "' . single_cat_title('', false) . '"' . $after; } elseif ( is_day() ) { echo '' . get_the_time('Y') . ' ' . $delimiter . ' '; echo '' . get_the_time('F') . ' ' . $delimiter . ' '; echo $before . get_the_time('d') . $after; } elseif ( is_month() ) { echo '' . get_the_time('Y') . ' ' . $delimiter . ' '; echo $before . get_the_time('F') . $after; } elseif ( is_year() ) { echo $before . get_the_time('Y') . $after; } elseif ( is_single() && !is_attachment() ) { if ( get_post_type() != 'post' ) { $post_type = get_post_type_object(get_post_type()); $slug = $post_type->rewrite; echo '' . $post_type->labels->singular_name . ' ' . $delimiter . ' '; echo $before . get_the_title() . $after; } else { $cat = get_the_category(); $cat = $cat[0]; echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' '); echo $before . get_the_title() . $after; } } elseif ( !is_single() && !is_page() && get_post_type() != 'post' ) { $post_type = get_post_type_object(get_post_type()); echo $before . $post_type->labels->singular_name . $after; } elseif ( is_attachment() ) { $parent = get_post($post->post_parent); $cat = get_the_category($parent->ID); $cat = $cat[0]; echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' '); echo '' . $parent->post_title . ' ' . $delimiter . ' '; echo $before . get_the_title() . $after; } elseif ( is_page() && !$post->post_parent ) { echo $before . get_the_title() . $after; } elseif ( is_page() && $post->post_parent ) { $parent_id = $post->post_parent; $breadcrumbs = array(); while ($parent_id) { $page = get_page($parent_id); $breadcrumbs[] = '' . get_the_title($page->ID) . ''; $parent_id = $page->post_parent; } $breadcrumbs = array_reverse($breadcrumbs); foreach ($breadcrumbs as $crumb) echo $crumb . ' ' . $delimiter . ' '; echo $before . get_the_title() . $after; } elseif ( is_search() ) { echo $before . 'Search results for "' . get_search_query() . '"' . $after; } elseif ( is_tag() ) { echo $before . 'Posts tagged "' . single_tag_title('', false) . '"' . $after; } elseif ( is_author() ) { global $author; $userdata = get_userdata($author); echo $before . 'Articles posted by ' . $userdata->display_name . $after; } elseif ( is_404() ) { echo $before . 'Error 404' . $after; } if ( get_query_var('paged') ) { if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ' ('; echo __('Page') . ' ' . get_query_var('paged'); if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ')'; } echo '
'; } } // end dimox_breadcrumbs() if ( ! isset( $content_width ) ) $content_width = 620; // Theme Option Functions function Basically_admin_scripts() { wp_enqueue_script('media-upload'); wp_enqueue_script('thickbox'); wp_register_script('my-upload', get_template_directory_uri().'/js/uploader.js', array('jquery','media-upload','thickbox')); wp_enqueue_script('my-upload'); } function Basically_admin_styles() { $file_dir=get_template_directory_uri(); wp_enqueue_style("style", $file_dir."/style/admin.css", false, "1.0", "all"); wp_enqueue_style('thickbox'); } add_action('admin_print_scripts', 'Basically_admin_scripts'); add_action('admin_print_styles', 'Basically_admin_styles'); add_action('admin_menu', 'Basically_theme_page'); function Basically_theme_page () { if ( count($_POST) > 0 && isset($_POST['Basically_settings']) ) { $options = array ('style', 'logo', 'favicon', 'category', 'header', 'analytics', 'ads-1', 'ads-2', 'ads-3'); foreach ( $options as $opt ) { delete_option ( 'Basically_'.$opt, $_POST[$opt] ); add_option ( 'Basically_'.$opt, $_POST[$opt] ); } } add_theme_page(__('Basically Theme Options'), __('Basically Theme Options'), 'edit_themes', basename(__FILE__), 'Basically_settings'); } function Basically_settings () {?>

Basically Theme Options

General Settings
Upload Custom Header: If you want to upload your custom header. Please Go to this page
Custom Background: If you want to change the background color or want to upload your background image. Please Go to this page
Custom Menus : Easily add, edit and delete your menus using custom menus. Please Go to this page to setup your menus

Upload Logo:

Category menu in header

If you need to add scripts to your header (like meta tag verification, perhaps),
you should enter them in the box above. They will be added before </head> tag

Put your tracking script here. They will be added before </body> tag
Advertisement Settings