esc_html__( 'Header Menu', 'natural-lite' ), 'social-menu' => esc_html__( 'Social Menu', 'natural-lite' ), )); // 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', 'natural-lite' ) ) )); $defaults = array( 'width' => 1600, 'height' => 480, 'default-image' => get_template_directory_uri() . '/images/default-header.jpg', 'flex-height' => true, 'flex-width' => true, 'default-text-color' => '333333', 'header-text' => false, 'uploads' => true, ); add_theme_support( 'custom-header', $defaults ); // Custom Background $defaults = array( 'default-color' => '827768', 'default-image' => get_template_directory_uri() . '/images/default-pattern.png', 'wp-head-callback' => '_custom_background_cb', 'admin-head-callback' => '', 'admin-preview-callback' => '', ); add_theme_support( 'custom-background', $defaults ); // Switch default core markup for search form, comment form, and comments to output valid HTML5. add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); } endif; // natural_lite_setup add_action( 'after_setup_theme', 'natural_lite_setup' ); /*-----------------------------------------------------------------------------------------------------// Add Stylesheet To Visual Editor -------------------------------------------------------------------------------------------------------*/ add_action( 'widgets_init', 'natural_lite_add_editor_styles' ); /** * Apply theme's stylesheet to the visual editor. * * @uses add_editor_style() Links a stylesheet to visual editor * @uses get_stylesheet_uri() Returns URI of theme stylesheet */ function natural_lite_add_editor_styles() { add_editor_style( 'css/style-editor.css' ); } /*-----------------------------------------------------------------------------------------------------// Category ID to Name -------------------------------------------------------------------------------------------------------*/ function natural_lite_cat_id_to_name( $id ) { $term = get_term( $id, 'category' ); if ( is_wp_error( $term ) ) return false; return $name = $term->name; } /*-----------------------------------------------------------------------------------------------------// Register Scripts -------------------------------------------------------------------------------------------------------*/ if( !function_exists('natural_lite_enqueue_scripts') ) { function natural_lite_enqueue_scripts() { // Enqueue Styles wp_enqueue_style( 'natural-style', get_stylesheet_uri() ); wp_enqueue_style( 'natural-style-mobile', get_template_directory_uri() . '/css/style-mobile.css', array( 'natural-style' ), '1.0' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array( 'natural-style' ), '1.0' ); // Resgister Scripts wp_register_script( 'natural-fitvids', get_template_directory_uri() . '/js/jquery.fitvids.js', array( 'jquery' ), '20130729' ); wp_register_script( 'natural-hover', get_template_directory_uri() . '/js/hoverIntent.js', array( 'jquery' ), '20130729' ); wp_register_script( 'natural-superfish', get_template_directory_uri() . '/js/superfish.js', array( 'jquery', 'natural-hover' ), '20130729' ); wp_register_script( 'natural-isotope', get_template_directory_uri() . '/js/jquery.isotope.js', array( 'jquery' ), '20130729' ); // Enqueue Scripts wp_enqueue_script( 'natural-html5shiv', get_template_directory_uri() . '/js/html5shiv.js' ); wp_enqueue_script( 'natural-custom', get_template_directory_uri() . '/js/jquery.custom.js', array( 'jquery', 'natural-superfish', 'natural-fitvids' ), '20130729', true ); wp_enqueue_script( 'natural-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20130729', true ); // IE Conditional Scripts global $wp_scripts; $wp_scripts->add_data( 'natural-html5shiv', 'conditional', 'lt IE 9' ); // Load Flexslider on front page and slideshow page template if ( is_home() ) { wp_enqueue_script( 'natural-flexslider', get_template_directory_uri() . '/js/jquery.flexslider.js', array( 'jquery' ), '20130729' ); } // 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', 'natural_lite_enqueue_scripts'); } /*-----------------------------------------------------------------------------------------------------// Register Sidebars -------------------------------------------------------------------------------------------------------*/ function natural_lite_widgets_init() { register_sidebar(array( 'name'=> esc_html__( "Default Sidebar", 'natural-lite' ), 'id' => 'sidebar-1', 'before_widget'=>'
', 'after_widget'=>'
', 'before_title'=>'
', 'after_title'=>'
' )); register_sidebar(array( 'name'=> esc_html__( "Left Sidebar", 'natural-lite' ), 'id' => 'left-sidebar', 'before_widget'=>'
', 'after_widget'=>'
', 'before_title'=>'
', 'after_title'=>'
' )); register_sidebar(array( 'name'=> esc_html__( "Footer Widgets", 'natural-lite' ), 'id' => 'footer', 'before_widget'=>'
', 'before_title'=>'
', 'after_title'=>'
' )); } add_action( 'widgets_init', 'natural_lite_widgets_init' ); /*----------------------------------------------------------------------------------------------------// /* Content Width /*----------------------------------------------------------------------------------------------------*/ if ( ! isset( $content_width ) ) $content_width = 640; /** * Adjust content_width value based on the presence of widgets */ function natural_lite_content_width() { if ( ! is_active_sidebar( 'sidebar-1' ) || is_active_sidebar( 'sidebar-1' ) || is_active_sidebar( 'sidebar-1' ) ) { global $content_width; $content_width = 960; } } add_action( 'template_redirect', 'natural_lite_content_width' ); /*-----------------------------------------------------------------------------------------------------// Comments Function -------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'natural_lite_comment' ) ) : function natural_lite_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; 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
    ', 'natural-lite' ), sprintf( '%s', wp_kses_post( get_comment_author_link() ) ), sprintf( '', esc_url( get_comment_link( $comment->comment_ID ) ), get_comment_time( 'c' ), /* translators: 1: date, 2: time */ sprintf( esc_html__( '%1$s', 'natural-lite' ), get_comment_date(), get_comment_time() ) ) ); ?>
    comment_approved == '0' ) : ?>
    esc_html__( 'Reply', 'natural-lite' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    ', '' ); ?>
    =$limit) { array_pop($excerpt); $excerpt = implode(" ",$excerpt).'...'; } else { $excerpt = implode(" ",$excerpt); } $excerpt = preg_replace('`[[^]]*]`','',$excerpt); return $excerpt; } function natural_lite_content($limit) { $content = explode(' ', get_the_content(), $limit); if (count($content)>=$limit) { array_pop($content); $content = implode(" ",$content).'...'; } else { $content = implode(" ",$content); } $content = preg_replace('/[.+]/','', $content); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); return $content; } /*-----------------------------------------------------------------------------------------------------// /* Pagination Function /*-----------------------------------------------------------------------------------------------------*/ function natural_lite_get_pagination_links() { global $wp_query; $big = 999999999; echo paginate_links( array( 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), 'format' => '?paged=%#%', 'current' => max( 1, get_query_var('paged') ), 'prev_text' => esc_html__('«', 'natural-lite'), 'next_text' => esc_html__('»', 'natural-lite'), 'total' => $wp_query->max_num_pages ) ); } /*-----------------------------------------------------------------------------------------------------// /* Custom Page Links /*-----------------------------------------------------------------------------------------------------*/ function natural_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; } add_filter('wp_link_pages_args', 'natural_lite_wp_link_pages_args_prevnext_add'); /*-----------------------------------------------------------------------------------------------------// Add Home Link To Custom Menu -------------------------------------------------------------------------------------------------------*/ function home_page_menu_args( $args ) { $args['show_home'] = true; return $args; } add_filter('wp_page_menu_args', 'home_page_menu_args'); /*-----------------------------------------------------------------------------------------------------// Body Class -------------------------------------------------------------------------------------------------------*/ function natural_lite_body_class( $classes ) { $header_image = get_header_image(); if ( ! empty( $header_image ) ) $classes[] = 'natural-header-active'; if ( empty( $header_image ) ) $classes[] = 'natural-header-inactive'; if ( is_singular() ) $classes[] = 'natural-singular'; if ( is_active_sidebar( 'right-sidebar' ) ) $classes[] = 'natural-right-sidebar'; 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[] = 'natural-background-image'; } else if ( ! in_array( get_background_color(), array( '', get_theme_support( 'custom-background', 'default-color' ) ) ) ) { // 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[] = 'natural-relative-text'; } return $classes; } add_action( 'body_class', 'natural_lite_body_class' ); /*-----------------------------------------------------------------------------------------------------// First Featured Video -------------------------------------------------------------------------------------------------------*/ function natural_lite_first_embed_media() { global $post, $posts; $first_vid = ''; $content = do_shortcode( apply_filters( 'the_content', $post->post_content ) ); $embeds = get_media_embedded_in_content( $content ); if ( ! empty($embeds) ) { foreach( $embeds as $embed ) { if ( strpos( $embed, 'video' ) || strpos( $embed, 'youtube' ) || strpos( $embed, 'vimeo' ) ) { return $embed; } } } else { return false; } } /*-----------------------------------------------------------------------------------------------------// Includes -------------------------------------------------------------------------------------------------------*/ require_once( get_template_directory() . '/includes/customizer.php' ); require_once( get_template_directory() . '/includes/typefaces.php' );