'', 'height'=>'55', 'width'=>'150', 'custom_css'=>'', 'slide_image_1' => '', 'slide_title_1' => '', 'slide_desc_1' => '', 'slide_btn_text_1' => '', 'slide_btn_link_1' => '', 'slide_image_2' => '', 'slide_title_2' => '', 'slide_desc_2' => '', 'slide_btn_text_2' => '', 'slide_btn_link_2' => '', 'slide_image_3' => '', 'slide_title_3' => '', 'slide_desc_3' => '', 'slide_btn_text_3' => '', 'slide_btn_link_3' => '', // Footer Call-Out 'fc_home'=>'1', 'fc_title' => '', 'fc_btn_txt' => '', 'fc_btn_link' =>'', 'fc_radio'=>'bottom', //Social media links 'header_social_media_in_enabled'=>'1', 'footer_section_social_media_enbled'=>'1', 'twitter_link' =>"", 'fb_link' =>"", 'linkedin_link' =>"", 'youtube_link' =>"", 'instagram' =>"", 'gplus' =>"", 'email_id' => '', 'phone_no' => '', 'footer_customizations' => __(' © 2015 Code Themes', 'bhumi' ), 'developed_by_text' => __('Theme Developed By', 'bhumi' ), 'developed_by_bhumi_text' => __('Code Themes', 'bhumi' ), 'developed_by_link' => 'https://codethemes.co/', 'home_service_heading' => '', 'service_1_title'=> '', 'service_1_icons'=> '', 'service_1_text'=> '', 'service_1_link'=>'', 'service_2_title'=> '', 'service_2_icons'=> '', 'service_2_text'=> '', 'service_2_link'=> '', 'service_3_title'=> '', 'service_3_icons'=> '', 'service_3_text'=> '', 'service_3_link'=>"", 'service_4_title'=> '', 'service_4_icons'=> '', 'service_4_text'=> '', 'service_4_link'=> '', //Portfolio Settings: 'portfolio_home'=>'1', 'port_heading' => '', 'port_1_img'=> '', 'port_1_title'=> '', 'port_1_link'=>'', 'port_2_img'=> '', 'port_2_title'=> '', 'port_2_link'=>'', 'port_3_img'=> '', 'port_3_title'=> '', 'port_3_link'=>'', 'port_4_img'=> '', 'port_4_title'=> '', 'port_4_link'=> '', //BLOG Settings 'show_blog' => '1', 'blog_title'=> '', ); return apply_filters( 'bhumi_options', $cpm_theme_options ); } function bhumi_get_options() { // Options API return wp_parse_args( get_option( 'bhumi_options', array() ), bhumi_default_settings() ); } /*After Theme Setup*/ add_action( 'after_setup_theme', 'bhumi_head_setup' ); function bhumi_head_setup() { global $content_width; //content width if ( ! isset( $content_width ) ) $content_width = 550; //px //Blog Thumb Image Sizes add_image_size('bhumi_home_post_thumb',340,210,true); //Blogs thumbs add_image_size('bhumi_cpm_page_thumb',730,350,true); add_image_size('bhumi_blog_2c_thumb',570,350,true); add_theme_support( 'title-tag' ); // Load text domain for translation-ready load_theme_textdomain( 'bhumi' ); register_nav_menu( 'primary', __( 'Primary Menu', 'bhumi' ) ); // theme support add_theme_support( 'post-thumbnails' ); //supports featured image $args = array('default-color' => '000000',); add_theme_support( 'custom-background', $args); add_theme_support( 'automatic-feed-links'); add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat' ) ); } function bhumi_support_for_pages() { add_post_type_support( 'bhumi', 'post-formats', array('aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat') ); } add_action( 'init', 'bhumi_support_for_pages' ); // Read more tag to formatting in blog page function bhumi_content_more($more) { return '
'.__('Read More', 'bhumi' ).'
'; } add_filter( 'the_content_more_link', 'bhumi_content_more' ); // Replaces the excerpt "more" text by a link function bhumi_excerpt_more($more) { return '...'; } add_filter('excerpt_more', 'bhumi_excerpt_more'); /* * bhumi widget area */ add_action( 'widgets_init', 'bhumi_widgets_init'); function bhumi_widgets_init() { /*sidebar*/ register_sidebar( array( 'name' => __( 'Sidebar', 'bhumi' ), 'id' => 'sidebar-primary', 'description' => __( 'The primary widget area', 'bhumi' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' ) ); register_sidebar( array( 'name' => __( 'Footer Widget Area', 'bhumi' ), 'id' => 'footer-widget-area', 'description' => __( 'Footer widget area', 'bhumi' ), 'before_widget' => '', 'before_title' => '', ) ); } /* Breadcrumbs */ function bhumi_breadcrumbs() { $delimiter = ''; $home = __('Home', 'bhumi' ); // text for the 'Home' link $before = '
  • '; // tag before the current crumb $after = '
  • '; // tag after the current crumb echo ''; } /*=================================================================================== * Add Author Links * =================================================================================*/ function bhumi_author_profile( $contactmethods ) { $contactmethods['youtube_profile'] = __('Youtube Profile URL','bhumi'); $contactmethods['twitter_profile'] = __('Twitter Profile URL','bhumi'); $contactmethods['facebook_profile'] = __('Facebook Profile URL','bhumi'); $contactmethods['linkedin_profile'] = __('Linkedin Profile URL','bhumi'); return $contactmethods; } add_filter( 'user_contactmethods', 'bhumi_author_profile', 10, 1); /*=================================================================================== * Add Class Gravtar * =================================================================================*/ add_filter('get_avatar','bhumi_gravatar_class'); function bhumi_gravatar_class($class) { $class = str_replace("class='avatar", "class='author_detail_img", $class); return $class; } /****--- Navigation for Author, Category , Tag , Archive ---***/ function bhumi_navigation() { ?>