'312450', 'default-image' => get_template_directory_uri() . '/images/assets/bg.jpg', ); add_theme_support( 'custom-background', $andorra_color_args ); /* * Enable support for custom logo. */ add_image_size( 'andorra-logo', 300, 80 ); add_theme_support( 'custom-logo', array( 'size' => 'andorra-logo' ) ); /** * Sets up theme custom header image. */ add_theme_support( 'custom-header', apply_filters( 'andorra_custom_header_args', array( 'width' => 1920, 'height' => 200, 'flex-height' => true, 'header-text' => false, ) ) ); /** * Indicate widget sidebars can use selective refresh in the Customizer. */ add_theme_support( 'customize-selective-refresh-widgets' ); } add_action( 'after_setup_theme', 'andorra_setup' ); /** * Add scripts function */ function andorra_add_script_function() { /** * Enqueue css */ $andorra_theme_options = andorra_get_options( 'andorra_theme_options' ); wp_enqueue_style ('bootstrap', get_template_directory_uri() . '/css/bootstrap.css'); wp_enqueue_style('andorra', get_stylesheet_uri()); if ($andorra_theme_options['animation'] == '1'): wp_enqueue_style ('animate', get_template_directory_uri() . '/css/animate.css'); endif; if ($andorra_theme_options['responsive_design'] == '1'): wp_enqueue_style ('responsive', get_template_directory_uri() . '/css/responsive.css'); endif; wp_enqueue_style ('font-awesome', get_template_directory_uri() . '/css/font-awesome.css'); if( $andorra_theme_options['google_font_body'] !=""): wp_enqueue_style ('body-font', '//fonts.googleapis.com/css?family='. urlencode($andorra_theme_options['google_font_body']) .':400,400italic,700,700italic&subset=latin,greek-ext,cyrillic,latin-ext,greek,cyrillic-ext,vietnamese'); endif; if( $andorra_theme_options['google_font_menu'] != ""): wp_enqueue_style ('menu-font', '//fonts.googleapis.com/css?family='. urlencode($andorra_theme_options['google_font_menu']) .':400,400italic,700,700italic&subset=latin,greek-ext,cyrillic,latin-ext,greek,cyrillic-ext,vietnamese'); endif; if( $andorra_theme_options['google_font_logo'] != ""): wp_enqueue_style ('logo-font', '//fonts.googleapis.com/css?family='. urlencode($andorra_theme_options['google_font_logo']) .':400,400italic,700,700italic&subset=latin,greek-ext,cyrillic,latin-ext,greek,cyrillic-ext,vietnamese'); endif; /** * Enqueue javascripts */ wp_enqueue_script('bootstrap', get_template_directory_uri() . '/js/bootstrap.js', array( 'jquery' ),'', false); wp_enqueue_script('jquery-smartmenus', get_template_directory_uri() . '/js/jquery.smartmenus.js', array( 'jquery' ),'', false); wp_enqueue_script('smartmenus-bootstrap', get_template_directory_uri() . '/js/jquery.smartmenus.bootstrap.js', array( 'jquery' ),'', false); wp_enqueue_script('andorra-custom', get_template_directory_uri() . '/js/andorra-custom.js', array( 'jquery' ),'', true); wp_enqueue_script('imgLiquid', get_template_directory_uri() . '/js/imgLiquid.js', array( 'jquery' ),'', false); wp_enqueue_script('modernizr', get_template_directory_uri() . '/js/modernizr.js', array( 'jquery' ),'', false); wp_enqueue_script( 'unslider', get_template_directory_uri() . '/js/unslider.js', array( 'jquery' ),'', true); wp_enqueue_script( 'flexslider', get_template_directory_uri() . '/js/jquery.flexslider.js', array( 'jquery' ),'', true); wp_enqueue_script( 'ideal-image-slider', get_template_directory_uri() . '/js/ideal-image-slider.js', array(), '20160115', true ); if ($andorra_theme_options['captions_on'] == '1') { if (is_home() && ! is_paged()) { wp_enqueue_script( 'iis-captions', get_template_directory_uri() . '/js/iis-captions.js', array(), '20160116', true ); } } if ( $andorra_theme_options['menu_sticky'] == 1) { wp_enqueue_script('stickUp', get_template_directory_uri() . '/js/stickUp.js', array( 'jquery' ),'', false); wp_enqueue_script('andorra-sticky', get_template_directory_uri() . '/js/andorra-sticky.js', array( 'jquery' ),'', false); } if ( $andorra_theme_options['scrollup'] == 1) { wp_enqueue_script('andorra-scroll-on', get_template_directory_uri() . '/js/andorra-scrollup.js', array( 'jquery' ),'', true); } if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } if ( $andorra_theme_options['animation'] == '1') { wp_enqueue_script('wow', get_template_directory_uri() . '/js/wow.js', array(),'', false); wp_enqueue_script('andorra-animation', get_template_directory_uri() . '/js/andorra-animation.js', array(),'', true); } } add_action('wp_enqueue_scripts','andorra_add_script_function'); /** * Register widgetized locations */ function andorra_widgets_init() { register_sidebar(array( 'name' => __( 'Main Sidebar', 'andorra' ), 'id' => 'main-sidebar', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => __( 'Footer Widget 1', 'andorra' ), 'id' => 'footer-widget-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => __( 'Footer Widget 2', 'andorra' ), 'id' => 'footer-widget-2', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => __( 'Footer Widget 3', 'andorra' ), 'id' => 'footer-widget-3', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); } add_action( 'widgets_init', 'andorra_widgets_init' ); /** * Load html5shiv.js */ function andorra_html5shiv() { echo '' . "\n"; } add_action( 'wp_head', 'andorra_html5shiv' ); /** * Displays navigation to next/previous pages */ function andorra_paging_nav(){ if ( $GLOBALS['wp_query']->max_num_pages < 2 ) { return; } $paged = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1; $pagenum_link = html_entity_decode( get_pagenum_link() ); $query_args = array(); $url_parts = explode( '?', $pagenum_link ); if ( isset( $url_parts[1] ) ) { wp_parse_str( $url_parts[1], $query_args ); } $pagenum_link = remove_query_arg( array_keys( $query_args ), $pagenum_link ); $pagenum_link = trailingslashit( $pagenum_link ) . '%_%'; $format = $GLOBALS['wp_rewrite']->using_index_permalinks() && ! strpos( $pagenum_link, 'index.php' ) ? 'index.php/' : ''; $format .= $GLOBALS['wp_rewrite']->using_permalinks() ? user_trailingslashit( 'page/%#%', 'paged' ) : '?paged=%#%'; // Set up paginated links. $links = paginate_links( array( 'base' => $pagenum_link, 'format' => $format, 'total' => $GLOBALS['wp_query']->max_num_pages, 'current' => $paged, 'mid_size' => 1, 'add_args' => array_map( 'urlencode', $query_args ), 'prev_text' => __( '← Previous', 'andorra' ), 'next_text' => __( 'Next →', 'andorra' ), ) ); if ( $links ) : ?>
= 2 || $page >= 2 ) $title = "$title $sep " . sprintf( __( 'Page %s', 'andorra' ), max( $paged, $page ) ); return $title; } add_filter( 'wp_title', 'andorra_wp_title', 10, 2 ); endif; /** * Function to add ScrollUp to the footer. */ function andorra_add_scrollup() { $andorra_theme_options = andorra_get_options( 'andorra_theme_options' ); if ( $andorra_theme_options['scrollup'] == 1) { echo ''."\n"; } } add_action('wp_footer', 'andorra_add_scrollup'); /** * Load function to change excerpt length * */ function andorra_excerpt_length( $length ) { $andorra_theme_options = andorra_get_options( 'andorra_theme_options' ); if($andorra_theme_options['blog_excerpt'] !="") { $excrpt = $andorra_theme_options['blog_excerpt']; return $excrpt; } else { $excrpt = '50'; return $excrpt; } } add_filter('excerpt_length', 'andorra_excerpt_length', 999); /** * Function for displaying image attachments. * */ function andorra_the_attached_image() { $post = get_post(); $attachment_size = apply_filters( 'andorra_attachment_size', array( 1024, 1024 ) ); $next_attachment_url = wp_get_attachment_url(); $attachment_ids = get_posts( array( 'post_parent' => $post->post_parent, 'fields' => 'ids', 'numberposts' => -1, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID', ) ); // If there is more than 1 attachment in a gallery... if ( count( $attachment_ids ) > 1 ) { foreach ( $attachment_ids as $attachment_id ) { if ( $attachment_id == $post->ID ) { $next_id = current( $attachment_ids ); break; } } // get the URL of the next image attachment... if ( $next_id ) { $next_attachment_url = get_attachment_link( $next_id ); } // or get the URL of the first image attachment. else { $next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) ); } } printf( '%2$s', esc_url( $next_attachment_url ), wp_get_attachment_image( $post->ID, $attachment_size ) ); } /** * Function for displaying custom logo. * */ if ( ! function_exists( 'andorra_the_custom_logo' ) ) : function andorra_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif;