240, 'width' => 640, 'flex-height' => true, 'flex-width' => true, 'header-text' => array( 'site-title' ), ) ); /* * Enable support for custom menus. */ register_nav_menus( array( 'main-menu' => esc_html__( 'Main Menu', 'structure-lite' ), 'social-menu' => esc_html__( 'Social Menu', 'structure-lite' ), )); /* * Enable support for custom header. */ register_default_headers( array( 'default' => array( 'url' => get_template_directory_uri() . '/images/default-header.jpg', 'thumbnail_url' => get_template_directory_uri() . '/images/default-header.jpg', 'description' => esc_html__( 'Default Custom Header', 'structure-lite' ), ), )); $defaults = array( 'width' => 1800, 'height' => 480, 'default-image' => get_template_directory_uri() . '/images/default-header.jpg', 'flex-height' => true, 'flex-width' => true, 'default-text-color' => 'ffffff', 'header-text' => true, 'uploads' => true, ); add_theme_support( 'custom-header', $defaults ); /* * Enable support for custom background. */ $defaults = array( 'default-color' => 'ffffff', ); add_theme_support( 'custom-background', $defaults ); } endif; // End function structure_lite_setup. add_action( 'after_setup_theme', 'structure_lite_setup' ); /* ------------------------------------------------------------------------------------------------------- Register Scripts ------------------------------------------------------------------------------------------------------- */ if ( ! function_exists( 'structure_lite_enqueue_scripts' ) ) { /** Function structure_lite_enqueue_scripts */ function structure_lite_enqueue_scripts() { // Enqueue Styles. wp_enqueue_style( 'structure-lite-style', get_stylesheet_uri() ); wp_enqueue_style( 'structure-lite-style-conditionals', get_template_directory_uri() . '/css/style-conditionals.css', array( 'structure-lite-style' ), '4.0' ); wp_enqueue_style( 'structure-lite-style-mobile', get_template_directory_uri() . '/css/style-mobile.css', array( 'structure-lite-style' ), '4.0' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array( 'structure-lite-style' ), '4.0' ); // Resgister Scripts. wp_register_script( 'jquery-fitvids', get_template_directory_uri() . '/js/jquery.fitvids.js', array( 'jquery' ), '4.0' ); wp_register_script( 'superfish', get_template_directory_uri() . '/js/superfish.js', array( 'jquery', 'hoverIntent' ), '4.0' ); // Enqueue Scripts. wp_enqueue_script( 'hoverIntent' ); wp_enqueue_script( 'structure-lite-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '4.0', true ); wp_enqueue_script( 'structure-lite-custom', get_template_directory_uri() . '/js/jquery.custom.js', array( 'jquery', 'superfish', 'jquery-fitvids' ), '4.0', true ); // Load single scripts only on single pages. if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } } add_action( 'wp_enqueue_scripts', 'structure_lite_enqueue_scripts' ); if ( ! function_exists( 'structure_lite_custom_styles' ) ) { /** Function structure_lite_custom_styles */ function structure_lite_custom_styles() { $desc_color = ''; $bg_color = ''; // Text color. if ( '' != get_header_textcolor() ) { $desc_color .= 'color: #' . get_header_textcolor() . ';'; } if ( '' != $desc_color ) { $desc_color = '.site-description {' . $desc_color . '}'; wp_add_inline_style( 'structure-lite-style', $desc_color ); } // Background color. if ( '' != get_theme_mod( 'background_color' ) ) { $bg_color .= 'background-color: #' . get_theme_mod( 'background_color' ) . ';'; } if ( '' != $bg_color ) { $bg_color = '.menu ul.sub-menu, .menu ul.children, .landing-page .content {' . $bg_color . '}'; wp_add_inline_style( 'structure-lite-style', $bg_color ); } } } add_action( 'wp_enqueue_scripts', 'structure_lite_custom_styles' ); /* ------------------------------------------------------------------------------------------------------- Custom Logo ------------------------------------------------------------------------------------------------------- */ if ( ! function_exists( 'structure_lite_custom_logo' ) ) : function structure_lite_custom_logo() { if ( function_exists( 'the_custom_logo' ) && has_custom_logo() ) { if ( is_front_page() && is_home() ) { ?>

cat_name; } endif; /* ------------------------------------------------------------------------------------------------------- Register Sidebars ------------------------------------------------------------------------------------------------------- */ if ( ! function_exists( 'structure_lite_widgets_init' ) ) : /** Function structure_lite_widgets_init */ function structure_lite_widgets_init() { register_sidebar(array( 'name' => esc_html__( 'Default Sidebar', 'structure-lite' ), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__( 'Blog Sidebar', 'structure-lite' ), 'id' => 'sidebar-blog', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__( 'Left Sidebar', 'structure-lite' ), 'id' => 'sidebar-left', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__( 'Footer Widgets', 'structure-lite' ), 'id' => 'footer', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); } endif; add_action( 'widgets_init', 'structure_lite_widgets_init' ); /* ------------------------------------------------------------------------------------------------------- Posted On Function ------------------------------------------------------------------------------------------------------- */ if ( ! function_exists( 'structure_lite_posted_on' ) ) : /** Function structure_lite_posted_on */ function structure_lite_posted_on() { if ( get_the_modified_time() != get_the_time() ) { printf( __( 'Updated: %2$s', 'structure-lite' ), 'meta-prep meta-prep-author', sprintf( '%3$s', esc_url( get_permalink() ), esc_attr( get_the_modified_time() ), esc_attr( get_the_modified_date() ) ) ); } else { printf( __( 'Posted: %2$s', 'structure-lite' ), 'meta-prep meta-prep-author', sprintf( '%3$s', esc_url( get_permalink() ), esc_attr( get_the_time() ), get_the_date() ) ); } } endif; /* ------------------------------------------------------------------------------------------------------ Content Width ------------------------------------------------------------------------------------------------------ */ if ( ! isset( $content_width ) ) { $content_width = 760; } if ( ! function_exists( 'structure_lite_content_width' ) ) : /** Function structure_lite_content_width */ function structure_lite_content_width() { $GLOBALS['content_width'] = apply_filters( 'structure_lite_content_width', 760 ); } endif; add_action( 'after_setup_theme', 'structure_lite_content_width', 0 ); /* ------------------------------------------------------------------------------------------------------- Comments Function ------------------------------------------------------------------------------------------------------- */ if ( ! function_exists( 'structure_lite_comment' ) ) : /** * Setup our comments for the theme. * * @param array $comment IDs for categories. * @param array $args Comment arguments. * @param array $depth Level of replies. */ function structure_lite_comment( $comment, $args, $depth ) { switch ( $comment->comment_type ) : case 'pingback' : case 'trackback' : ?>
  • ', '' ); ?>

  • id="">
    comment_parent ) { $avatar_size = 48; } echo get_avatar( $comment, $avatar_size ); /* translators: 1: comment author, 2: date and time */ printf( __( '%1$s
    %2$s
    ', 'structure-lite' ), sprintf( __( '%s', 'structure-lite' ), wp_kses_post( get_comment_author_link() ) ), sprintf( __( '', 'structure-lite' ), esc_url( get_comment_link( $comment->comment_ID ) ), get_comment_time( 'c' ), /* translators: 1: date, 2: time */ sprintf( esc_html__( '%1$s', 'structure-lite' ), get_comment_date(), get_comment_time() ) ) ); ?>
    comment_approved ) : ?>
    esc_html__( 'Reply', 'structure-lite' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    ', '' ); ?>
    '. esc_html__( 'Read More', 'structure-lite' ) .''; } endif; add_filter( 'excerpt_more', 'structure_lite_excerpt_more' ); /* ------------------------------------------------------------------------------------------------------- Custom Page Links ------------------------------------------------------------------------------------------------------- */ /** * Adds custom page links to pages. * * @param array $args for page links. * @return array */ if ( ! function_exists( 'structure_lite_wp_link_pages_args_prevnext_add' ) ) : function structure_lite_wp_link_pages_args_prevnext_add( $args ) { global $page, $numpages, $more, $pagenow; if ( ! $args['next_or_number'] == 'next_and_number' ) { return $args; } $args['next_or_number'] = 'number'; // Keep numbering for the main part. if ( ! $more ) { return $args; } if ( $page -1 ) { // There is a previous page. $args['before'] .= _wp_link_page( $page -1 ) . $args['link_before']. $args['previouspagelink'] . $args['link_after'] . ''; } if ( $page < $numpages ) { // There is a next page. $args['after'] = _wp_link_page( $page + 1 ) . $args['link_before'] . $args['nextpagelink'] . $args['link_after'] . '' . $args['after']; } return $args; } endif; add_filter( 'wp_link_pages_args', 'structure_lite_wp_link_pages_args_prevnext_add' ); /* ------------------------------------------------------------------------------------------------------- Body Class ------------------------------------------------------------------------------------------------------- */ /** * Adds custom classes to the array of body classes. * * @param array $classes Classes for the body element. * @return array */ if ( ! function_exists( 'structure_lite_body_class' ) ) : function structure_lite_body_class( $classes ) { $header_image = get_header_image(); $post_pages = is_home() || is_archive() || is_search() || is_attachment(); if ( function_exists( 'the_custom_logo' ) && has_custom_logo() ) { $classes[] = 'structure-has-logo'; } if ( 'left' == get_theme_mod( 'structure_lite_logo_align', 'left' ) ) { $classes[] = 'structure-logo-left'; } if ( 'center' == get_theme_mod( 'structure_lite_logo_align', 'left' ) ) { $classes[] = 'structure-logo-center'; } if ( 'right' == get_theme_mod( 'structure_lite_logo_align', 'left' ) ) { $classes[] = 'structure-logo-right'; } if ( 'blank' != get_theme_mod( 'header_textcolor' ) ) { $classes[] = 'structure-desc-active'; } if ( 'blank' == get_theme_mod( 'header_textcolor' ) ) { $classes[] = 'structure-desc-inactive'; } if ( is_singular() && ! has_post_thumbnail() ) { $classes[] = 'structure-no-img'; } if ( is_singular() && has_post_thumbnail() ) { $classes[] = 'structure-has-img'; } if ( $post_pages && ! empty( $header_image ) || is_page() && ! has_post_thumbnail() && ! empty( $header_image ) ) { $classes[] = 'structure-header-active'; } else { $classes[] = 'structure-header-inactive'; } if ( is_singular() ) { $classes[] = 'structure-singular'; } if ( is_active_sidebar( 'sidebar-1' ) ) { $classes[] = 'structure-sidebar-1'; } if ( is_active_sidebar( 'footer' ) ) { $classes[] = 'structure-footer-active'; } if ( '' != get_theme_mod( 'background_image' ) ) { // This class will render when a background image is set // regardless of whether the user has set a color as well. $classes[] = 'structure-background-image'; } else if ( ! in_array( get_background_color(), array( '', get_theme_support( 'custom-background', 'default-color' ) ), true ) ) { // This class will render when a background color is set // but no image is set. In the case the content text will // Adjust relative to the background color. $classes[] = 'structure-relative-text'; } return $classes; } endif; add_action( 'body_class', 'structure_lite_body_class' ); /* ------------------------------------------------------------------------------------------------------- Includes ------------------------------------------------------------------------------------------------------- */ require_once( get_template_directory() . '/customizer/customizer.php' ); require_once( get_template_directory() . '/includes/typefaces.php' );