125, 'width' => 250, 'flex-height' => true, ) ); register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'adventure-lite' ), ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); add_editor_style( 'editor-style.css' ); } endif; // adventure_lite_setup add_action( 'after_setup_theme', 'adventure_lite_setup' ); if ( ! function_exists( 'adventure_lite_excerpt_length' ) ) { /** * Filter the except length to 15 characters. * Returns default on admin side * * @return int - modified excerpt length. */ function adventure_lite_excerpt_length( $length ) { return is_admin() ? $length : 15; } } add_filter( 'excerpt_length', 'adventure_lite_excerpt_length', 999 ); function adventure_lite_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Blog Sidebar', 'adventure-lite' ), 'description' => esc_html__( 'Appears on blog page sidebar', 'adventure-lite' ), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Header Right Widget', 'adventure-lite' ), 'description' => esc_html__( 'Appears on top of the header', 'adventure-lite' ), 'id' => 'header-right-widget', 'before_widget' => '', 'before_title' => '', 'after_title' => '', 'after_widget' => '', ) ); } add_action( 'widgets_init', 'adventure_lite_widgets_init' ); function adventure_lite_font_url(){ $font_url = ''; /* Translators: If there are any character that are not * supported by Roboto Condensed, trsnalate this to off, do not * translate into your own language. */ $robotocondensed = _x('on','robotocondensed:on or off','adventure-lite'); /* Translators: If there has any character that are not supported * by Scada, translate this to off, do not translate * into your own language. */ $scada = _x('on','Scada:on or off','adventure-lite'); $lato = _x('on','Lato:on or off','adventure-lite'); if('off' !== $robotocondensed ){ $font_family = array(); if('off' !== $robotocondensed){ $font_family[] = 'Roboto Condensed:300,400,600,700,800,900'; } if('off' !== $lato){ $font_family[] = 'Lato:100,100i,300,300i,400,400i,700,700i,900,900i'; } $query_args = array( 'family' => urlencode(implode('|',$font_family)), ); $font_url = add_query_arg($query_args,'//fonts.googleapis.com/css'); } return $font_url; } function adventure_lite_scripts() { wp_enqueue_style('adventure-lite-font', adventure_lite_font_url(), array()); wp_enqueue_style( 'adventure-lite-basic-style', get_stylesheet_uri() ); wp_enqueue_style( 'adventure-lite-editor-style', get_template_directory_uri()."/adventure-lite-editor-style.css" ); wp_enqueue_style( 'nivo-slider', get_template_directory_uri()."/css/nivo-slider.css" ); wp_enqueue_style( 'adventure-lite-responsive', get_template_directory_uri()."/css/adventure-lite-responsive.css" ); wp_enqueue_style( 'adventure-lite-base-style', get_template_directory_uri()."/css/adventure-lite-style-base.css" ); wp_enqueue_script( 'jquery-nivo', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') ); wp_enqueue_script( 'adventure-lite-custom-js', get_template_directory_uri() . '/js/adventure-lite-custom.js' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'adventure_lite_scripts' ); define('SKTTHEMES_URL','https://www.sktthemes.net','adventure-lite'); define('SKTTHEMES_PRO_THEME_URL','https://www.sktthemes.net/shop/adventure-wordpress-theme/','adventure-lite'); define('SKTTHEMES_FREE_THEME_URL','https://www.sktthemes.net/shop/free-travel-blog-wordpress-theme/','adventure-lite'); define('SKTTHEMES_THEME_DOC','http://sktthemesdemo.net/documentation/adventure-documentation/','adventure-lite'); define('SKTTHEMES_LIVE_DEMO','http://sktperfectdemo.com/demos/adventure/','adventure-lite'); define('SKTTHEMES_THEMES','https://www.sktthemes.net/themes/','adventure-lite'); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template for about theme. */ require get_template_directory() . '/inc/about-themes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; // get slug by id function adventure_lite_get_slug_by_id($id) { $post_data = get_post($id, ARRAY_A); $slug = $post_data['post_name']; return $slug; } if ( ! function_exists( 'adventure_lite_the_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * */ function adventure_lite_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; require_once get_template_directory() . '/customize-pro/example-1/class-customize.php';