'; // text for the 'Home' link $text['category'] = 'Archive by Category "%s"'; // text for a category page $text['search'] = 'Search Results for "%s" Query'; // text for a search results page $text['tag'] = 'Posts Tagged "%s"'; // text for a tag page $text['author'] = 'Articles Posted by %s'; // text for an author page $text['404'] = 'Error 404'; // text for the 404 page $showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show $showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show //$delimiter = ( isset( $boxy['breadcrumb-char'] ) && $boxy['breadcrumb-char'] != '' ) ? $boxy['breadcrumb-char'] : ' » '; // delimiter between crumbs $breadcrumb_char = get_theme_mod( 'breadcrumb_char', '1' ); if ( $breadcrumb_char ) { switch ( $breadcrumb_char ) { case '2' : $delimiter = ' / '; break; case '3': $delimiter = ' > '; break; case '1': default: $delimiter = ' » '; break; } } $before = ''; // tag before the current crumb $after = ''; // tag after the current crumb /* === END OF OPTIONS === */ global $post; $homeLink = home_url() . '/'; $linkBefore = ''; $linkAfter = ''; $linkAttr = ' rel="v:url" property="v:title"'; $link = $linkBefore . '%2$s' . $linkAfter; if ( is_home() || is_front_page() ) { if ( $showOnHome == 1 ) echo '
' . $text['home'] . '
'; } else { echo '
' . sprintf( $link, $homeLink, $text['home'] ) . $delimiter; if ( is_category() ) { $thisCat = get_category( get_query_var( 'cat' ), false ); if ( $thisCat->parent != 0 ) { $cats = get_category_parents( $thisCat->parent, TRUE, $delimiter ); $cats = str_replace( '', '' . $linkAfter, $cats ); echo $cats; } echo $before . sprintf( $text['category'], single_cat_title( '', false ) ) . $after; } elseif ( is_search() ) { echo $before . sprintf( $text['search'], get_search_query() ) . $after; } elseif ( is_day() ) { echo sprintf( $link, get_year_link( get_the_time( 'Y' ) ), get_the_time( 'Y' ) ) . $delimiter; echo sprintf( $link, get_month_link( get_the_time( 'Y' ), get_the_time( 'm' ) ), get_the_time( 'F' ) ) . $delimiter; echo $before . get_the_time( 'd' ) . $after; } elseif ( is_month() ) { echo sprintf( $link, get_year_link( get_the_time( 'Y' ) ), get_the_time( 'Y' ) ) . $delimiter; echo $before . get_the_time( 'F' ) . $after; } elseif ( is_year() ) { echo $before . get_the_time( 'Y' ) . $after; } elseif ( is_single() && !is_attachment() ) { if ( get_post_type() != 'post' ) { $post_type = get_post_type_object( get_post_type() ); $slug = $post_type->rewrite; printf( $link, $homeLink . '/' . $slug['slug'] . '/', $post_type->labels->singular_name ); if ( $showCurrent == 1 ) echo $delimiter . $before . get_the_title() . $after; } else { $cat = get_the_category(); $cat = $cat[0]; $cats = get_category_parents( $cat, TRUE, $delimiter ); if ( $showCurrent == 0 ) $cats = preg_replace( "#^(.+)$delimiter$#", "$1", $cats ); $cats = str_replace( '', '' . $linkAfter, $cats ); echo $cats; if ( $showCurrent == 1 ) echo $before . get_the_title() . $after; } } elseif ( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ) { $post_type = get_post_type_object( get_post_type() ); echo $before . $post_type->labels->singular_name . $after; } elseif ( is_attachment() ) { $parent = get_post( $post->post_parent ); $cat = get_the_category( $parent->ID ); $cat = $cat[0]; $cats = get_category_parents( $cat, TRUE, $delimiter ); $cats = str_replace( '', '' . $linkAfter, $cats ); echo $cats; printf( $link, get_permalink( $parent ), $parent->post_title ); if ( $showCurrent == 1 ) echo $delimiter . $before . get_the_title() . $after; } elseif ( is_page() && !$post->post_parent ) { if ( $showCurrent == 1 ) echo $before . get_the_title() . $after; } elseif ( is_page() && $post->post_parent ) { $parent_id = $post->post_parent; $breadcrumbs = array(); while ( $parent_id ) { $page = get_page( $parent_id ); $breadcrumbs[] = sprintf( $link, get_permalink( $page->ID ), get_the_title( $page->ID ) ); $parent_id = $page->post_parent; } $breadcrumbs = array_reverse( $breadcrumbs ); for ( $i = 0; $i < count( $breadcrumbs ); $i++ ) { echo $breadcrumbs[$i]; if ( $i != count( $breadcrumbs )-1 ) echo $delimiter; } if ( $showCurrent == 1 ) echo $delimiter . $before . get_the_title() . $after; } elseif ( is_tag() ) { echo $before . sprintf( $text['tag'], single_tag_title( '', false ) ) . $after; } elseif ( is_author() ) { global $author; $userdata = get_userdata( $author ); echo $before . sprintf( $text['author'], $userdata->display_name ) . $after; } elseif ( is_404() ) { echo $before . $text['404'] . $after; } if ( get_query_var( 'paged' ) ) { if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ' ('; echo __( 'Page', 'boxy' ) . ' ' . get_query_var( 'paged' ); if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ')'; } echo '
'; } } // end boxy_breadcrumbs() } if ( ! function_exists( 'boxy_entry_top_meta' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function boxy_entry_top_meta() { // Post meta data $single_post_top_meta = get_theme_mod('single_post_top_meta', array(1,2,6) ); // echo '
',print_r($single_post_top_meta),'
'; if ( 'post' == get_post_type() ) { foreach ($single_post_top_meta as $key => $value) { if( $value == '1') { global $post;?> ' . esc_html( get_the_author() ) . '' ); }elseif( $value == 3) { if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ' '; comments_popup_link( __( 'Leave a comment', 'boxy' ), __( '1 Comment', 'boxy' ), __( '% Comments', 'boxy' ) ); echo ''; } }elseif( $value == 4) { $categories_list = get_the_category_list( __( ', ', 'boxy' ) ); if ( $categories_list ) { printf( ' ' . __( '%1$s ', 'boxy' ) . '', $categories_list ); } }elseif( $value == 5) { /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', __( ', ', 'boxy' ) ); if ( $tags_list ) { printf( ' ' . __( '%1$s ', 'boxy' ) . '', $tags_list ); } }elseif( $value == 6) { edit_post_link( __( 'Edit', 'boxy' ), ' ', '' ); } } } } endif; if ( ! function_exists( 'boxy_entry_bottom_meta' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function boxy_entry_bottom_meta() { // Post meta data $single_post_bottom_meta = get_theme_mod('single_post_bottom_meta', array(1,4,5,6) ); if ( 'post' == get_post_type() ) { foreach ($single_post_bottom_meta as $key => $value) { if( $value == '1') { ?> ' . esc_html( get_the_author() ) . '' ); }elseif( $value == 3) { if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ' '; comments_popup_link( __( 'Leave a comment', 'boxy' ), __( '1 Comment', 'boxy' ), __( '% Comments', 'boxy' ) ); echo ''; } }elseif( $value == 4) { $categories_list = get_the_category_list( __( ', ', 'boxy' ) ); if ( $categories_list ) { printf( ' ' . __( '%1$s ', 'boxy' ) . '', $categories_list ); } }elseif( $value == 5) { /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', __( ', ', 'boxy' ) ); if ( $tags_list ) { printf( ' ' . __( '%1$s ', 'boxy' ) . '', $tags_list ); } }elseif( $value == 6) { edit_post_link( __( 'Edit', 'boxy' ), ' ', '' ); } } } } endif; if ( ! function_exists( 'boxy_paging_nav' ) ) : /** * Display navigation to next/previous set of posts when applicable. */ function boxy_paging_nav() { // Don't print empty markup if there's only one page. if ( $GLOBALS['wp_query']->max_num_pages < 2 ) { return; } ?> max_num_pages < 2 ) { return; } ?> comment_type || 'trackback' == $comment->comment_type ) : ?>
  • >
    ', '' ); ?>
  • >
    %s', get_comment_author_link() ) ); ?> comment_approved ) : ?>

    'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '
    ', 'after' => '
    ', ) ) ); ?> ' ); ?>
    %2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); printf( __( ' %1$s', 'boxy' ), sprintf( '%2$s', esc_url( get_permalink() ), $time_string ), sprintf( ' %2$s', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ) ); ?> Edit', 'boxy' ), '', '' ); ?> %1$s', 'boxy' ), sprintf( '%2$s', esc_url( get_permalink() ), __( 'More', 'boxy' ) ) ); } ?> %2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); printf( __( ' %1$s', 'boxy' ), sprintf( '%2$s', esc_url( get_permalink() ), $time_string ) ); } endif; if ( ! function_exists( 'boxy_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function boxy_entry_footer() { // Hide category and tag text for pages. if ( 'post' == get_post_type() ) { /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( __( ', ', 'boxy' ) ); if ( $categories_list && boxy_categorized_blog() ) { printf( ' ' . __( '%1$s ', 'boxy' ) . '', $categories_list ); } /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', __( ', ', 'boxy' ) ); if ( $tags_list ) { printf( ' ' . __( '%1$s ', 'boxy' ) . '', $tags_list ); } } if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( __( 'Leave a comment', 'boxy' ), __( ' 1 Comment', 'boxy' ), __( ' % Comments', 'boxy' ) ); echo ''; } } endif; /** * Returns true if a blog has more than 1 category. */ function boxy_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'all_the_cool_cats' ) ) ) { // Create an array of all the categories that are attached to posts. $all_the_cool_cats = get_categories( array( 'hide_empty' => 1, ) ); // Count the number of categories that are attached to the posts. $all_the_cool_cats = count( $all_the_cool_cats ); set_transient( 'all_the_cool_cats', $all_the_cool_cats ); } if ( '1' != $all_the_cool_cats ) { // This blog has more than 1 category so boxy_categorized_blog should return true. return true; } else { // This blog has only 1 category so boxy_categorized_blog should return false. return false; } } // Recent Posts with featured Images to be displayed on home page if ( ! function_exists( 'boxy_recent_posts' ) ) { function boxy_recent_posts() { $output = ''; $output .= '
    '; $output .= ''; $output .= '
    '; echo $output; } } /** * Flush out the transients used in boxy_categorized_blog. */ function boxy_category_transient_flusher() { // Like, beat it. Dig? delete_transient( 'all_the_cool_cats' ); } add_action( 'edit_category', 'boxy_category_transient_flusher' ); add_action( 'save_post', 'boxy_category_transient_flusher' ); // cleaning up excerpt add_filter( 'excerpt_more', 'boxy_excerpt_more' ); // This removes the annoying […] to a Read More link function boxy_excerpt_more( $excerpt ) { global $post; // edit here if you like $output = sprintf( __( '

    Read more »

    ','boxy' ), esc_attr( get_permalink( $post->ID ) ), esc_attr( get_the_title( $post->ID ) ) ); return $output; } function boxy_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'boxy_excerpt_length', 999 ); add_action( 'wp_head', 'boxy_custom_css' ); function boxy_custom_css() { global $boxy; if( isset( $boxy['custom-css'] ) ) { $custom_css = ''; echo $custom_css; } } // free-extra functions // // Related Posts Function (call using boxy_related_posts(); ) /NecessarY/ May be write a shortcode? function boxy_related_posts() { echo ''; } if ( ! function_exists( 'boxy_post_nav' ) ) : /** * Display navigation to next/previous post when applicable. * * @return void */ function boxy_post_nav() { // Don't print empty markup if there's nowhere to navigate. $previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) { return; } ?> request; $posts_per_page = intval(get_query_var('posts_per_page')); $paged = intval(get_query_var('paged')); $numposts = $wp_query->found_posts; $max_page = $wp_query->max_num_pages; if ( $numposts <= $posts_per_page ) { return; } if(empty($paged) || $paged == 0) { $paged = 1; } $pages_to_show = 7; $pages_to_show_minus_1 = $pages_to_show-1; $half_page_start = floor($pages_to_show_minus_1/2); $half_page_end = ceil($pages_to_show_minus_1/2); $start_page = $paged - $half_page_start; if($start_page <= 0) { $start_page = 1; } $end_page = $paged + $half_page_end; if(($end_page - $start_page) != $pages_to_show_minus_1) { $end_page = $start_page + $pages_to_show_minus_1; } if($end_page > $max_page) { $start_page = $max_page - $pages_to_show_minus_1; $end_page = $max_page; } if($start_page <= 0) { $start_page = 1; } echo $before.''.$after.""; } } function boxy_comments_meta() { if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo '| '; comments_popup_link( __( 'Leave a comment', 'boxy' ), __( '1 Comment', 'boxy' ), __( '% Comments', 'boxy' ) ); echo ''; } } /* Site Layout Option */ if( !function_exists('boxy_layout_class') ) { function boxy_layout_class() { if( is_home() && ( get_theme_mod('blog_layout',1) == 3 || get_theme_mod('blog_layout',1) == 5) ) { echo 'sixteen'; return; } $sidebar_position = get_theme_mod( 'sidebar_position', 'right' ); if( 'fullwidth' == $sidebar_position ) { echo 'sixteen'; }elseif('two-sidebar' == $sidebar_position || 'two-sidebar-left' == $sidebar_position || 'two-sidebar-right' == $sidebar_position ) { echo 'eight'; } else{ echo 'eleven'; } if ( 'no-sidebar' == $sidebar_position ) { echo ' no-sidebar'; } } } /* Two Sidebar Left action */ add_action('boxy_two_sidebar_left','boxy_double_sidebar_left'); if( !function_exists('boxy_double_sidebar_left') ) { function boxy_double_sidebar_left() { $sidebar_position = get_theme_mod( 'sidebar_position', 'right' ); if( 'two-sidebar' == $sidebar_position || 'two-sidebar-left' == $sidebar_position ) : get_sidebar('left'); endif; if('two-sidebar-left' == $sidebar_position || 'left' == $sidebar_position ): get_sidebar(); endif; } } /* Two Sidebar Right action */ add_action('boxy_two_sidebar_right','boxy_double_sidebar_right'); if( !function_exists('boxy_double_sidebar_right') ) { function boxy_double_sidebar_right() { $sidebar_position = get_theme_mod( 'sidebar_position', 'right' ); if( 'two-sidebar' == $sidebar_position || 'two-sidebar-right' == $sidebar_position || 'right' == $sidebar_position) : get_sidebar(); endif; if('two-sidebar-right' == $sidebar_position ): get_sidebar('left'); endif; } } add_action('boxy_single_flexslider_featured_image','boxy_single_flexslider_featured_image_top'); if( !function_exists('boxy_single_flexslider_featured_image_top') ) { function boxy_single_flexslider_featured_image_top() { $single_featured_image = get_theme_mod( 'single_featured_image',true ); $single_featured_image_size = get_theme_mod ('single_featured_image_size',1); if( $single_featured_image && $single_featured_image_size == 3 ) { if( has_post_thumbnail() && ! post_password_required() ) : the_post_thumbnail( 'post-thumbnail', array('class' => "single_page_flexslider_feature_image") ); endif; } } } add_action('boxy_single_page_flexslider_featured_image','boxy_single_page_flexslider_featured_image_top'); if( !function_exists('boxy_single_page_flexslider_featured_image_top') ) { function boxy_single_page_flexslider_featured_image_top() { $single_page_featured_image = get_theme_mod( 'single_page_featured_image',true ); $single_page_featured_image_size = get_theme_mod ('single_page_featured_image_size',1); if( $single_page_featured_image && $single_page_featured_image_size == 2) { if( has_post_thumbnail() && ! post_password_required() ) : the_post_thumbnail( 'post-thumbnail', array('class' => "single_page_flexslider_feature_image") ); endif; } } } /* boxy Custom Logo */ add_filter( 'get_custom_logo', 'boxy_custom_logo' ); if( !function_exists('boxy_custom_logo') ) { function boxy_custom_logo($html) { $custom_logo_id = get_theme_mod( 'custom_logo' ); $logo = get_theme_mod( 'logo', '' ); echo '

    '; if(!$custom_logo_id && $logo!= '') { echo ''; }else{ echo $html; } echo '

    '; } } if( !function_exists('boxy_masonry_blog_layout_class') ) { function boxy_masonry_blog_layout_class() { if( is_home() && get_theme_mod('blog_layout',1) == 4 || get_theme_mod('blog_layout',1) == 5 ) { echo 'masonry-blog-content'; } } } if( ! function_exists( 'boxy_featured_image' ) ) { function boxy_featured_image() { $featured_image_size = get_theme_mod ('featured_image_size', 1); if ( has_post_thumbnail() && ! post_password_required() ) : if( $featured_image_size == 1 ) : the_post_thumbnail('boxy-blog-full-width'); elseif( $featured_image_size == 2 ) : the_post_thumbnail('boxy-small-featured-image-width'); elseif( $featured_image_size == 3 ) : the_post_thumbnail('full'); elseif( $featured_image_size == 4 ) : the_post_thumbnail('medium'); elseif( $featured_image_size == 5 ) : the_post_thumbnail('large'); endif; endif; } } if( !function_exists('boxy_magazine_page_primary_class') ) { function boxy_magazine_page_primary_class() { $magazine_page_sidebar = get_theme_mod('magazine_sidebar',false); if( $magazine_page_sidebar ) { echo 'sixteen'; }else{ echo 'eleven'; } } } /* Page site style class ( layout )*/ if( !function_exists('boxy_site_style_class') ) { function boxy_site_style_class(){ $site_style = get_theme_mod('site-style'); if( $site_style == 'boxed' ) { $site_style_class = 'container boxed-container'; }elseif( $site_style == 'fluid' ){ $site_style_class = 'fluid-container'; } else{ $site_style_class = ''; } return $site_style_class; } } /* Page site style header class ( layout )*/ if( !function_exists('boxy_site_style_header_class') ) { function boxy_site_style_header_class(){ $site_style = get_theme_mod('site-style'); if( $site_style == 'boxed' ) { $site_style_header_class = 'boxed-header'; }elseif( $site_style == 'fluid' ){ $site_style_header_class = 'fluid-header'; } else{ $site_style_header_class = ''; } return $site_style_header_class; } } add_action('boxy_sidebar_right_widget','boxy_sidebar_right_widget'); if( !function_exists('boxy_sidebar_right_widget') ) { function boxy_sidebar_right_widget() { if ( is_active_sidebar( 'sidebar-1' ) ) { dynamic_sidebar('sidebar-1'); }else { ?> = 0 ) { return; } // If a logo has been set previously, update to use logo feature introduced in WordPress 4.5 if ( function_exists( 'the_custom_logo' ) && get_theme_mod( 'custom-logo', false ) ) { // Since previous logo was stored a URL, convert it to an attachment ID $logo = attachment_url_to_postid( get_theme_mod( 'custom-logo' ) ); if ( is_int( $logo ) ) { set_theme_mod( 'custom_logo', attachment_url_to_postid( get_theme_mod( 'custom-logo' ) ) ); } remove_theme_mod( 'custom-logo' ); } // Update to match your current theme version set_theme_mod( 'version', '1.2.6' ); } } add_action( 'after_setup_theme', 'boxy_logo_update_check' ); /* custom css */ //Recent Posts with featured Images to be displayed on home page /*if( ! function_exists('boxy_recent_posts') ) { function boxy_recent_posts() { $output = ''; $posts_per_page = get_theme_mod('recent_posts_count', get_option('post_per_page') ); // WP_Query arguments $args = array ( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => intval($posts_per_page), 'ignore_sticky_posts' => true, 'order' => 'DESC', ); // The Query $query = new WP_Query( $args ); // The Loop if ( $query->have_posts() && get_theme_mod('enable_recent_post_service',true) ) { $output .= '
    '; $output .= '

    ' . apply_filters('boxy_post_title',__('Latest Blog Posts','boxy') ). '

    '; $count=1; $output .= '
    '; while ( $query->have_posts() ) { $query->the_post(); if ($count % 3 == 0 || $count % 3 == 1 ) : $output .= '
    '; $output .= '
    '; if ( has_post_thumbnail() ) { $output .= get_the_post_thumbnail( $query->post->ID,'boxy_recent-post-img' ); } else { $output .= ''; } $output .= '
    '; $output .= '
    '; $output .= '
    ' . get_the_date() . boxy_get_author() .'
    '; $output .= '
    ' . get_the_title() . '
    '; $output .= '

    ' . get_the_content() . '

    '; //$output .= ''.__( apply_filters('boxy_more_text','Read More »'),'boxy').''; $output .= '
    '; $output .= '
    '; else : $output .= '
    '; $output .= '
    '; $output .= '
    ' . get_the_date() . boxy_get_author() . '
    '; $output .= '
    ' . get_the_title() . '
    '; $output .= '

    ' . get_the_content() . '

    '; //$output .= ''.__( apply_filters('boxy_more_text','Read More »'),'boxy').''; $output .= '
    '; $output .= '
    '; if ( has_post_thumbnail() ) { $output .= get_the_post_thumbnail( $query->post->ID,'boxy_recent-post-img' ); } else { $output .= ''; } $output .= '
    '; $output .= '
    '; endif; $count++; } $output .= '
    '; $output .= '
    '; } $query = null; // Restore original Post Data wp_reset_postdata(); echo $output; } }*/