', 'bakes-and-cakes' ) ); // delimiter between crumbs $home = get_theme_mod( 'bakes_and_cakes_breadcrumb_home_text', __( 'Home', 'bakes-and-cakes' ) ); // text for the 'Home' link $before = ''; // tag before the current crumb $after = ''; // tag after the current crumb $depth = 1; echo '
' . esc_html( $home ) . '' . $delimiter . ''; if( is_home() && ! is_front_page() ){ $depth = 2; if( $showCurrent ) echo $before . '' . esc_html( single_post_title( '', false ) ) .''. $after; }elseif( is_category() ){ $depth = 2; $thisCat = get_category( get_query_var( 'cat' ), false ); if( $show_front === 'page' && $post_page ){ //If static blog post page is set $p = get_post( $post_page ); echo '' . esc_html( $p->post_title ) . '' . $delimiter . ''; $depth ++; } if ( $thisCat->parent != 0 ) { $parent_categories = get_category_parents( $thisCat->parent, false, ',' ); $parent_categories = explode( ',', $parent_categories ); foreach ( $parent_categories as $parent_term ) { $parent_obj = get_term_by( 'name', $parent_term, 'category' ); if( is_object( $parent_obj ) ){ $term_url = get_term_link( $parent_obj->term_id ); $term_name = $parent_obj->name; echo '' . esc_html( $term_name ) . '' . $delimiter . ''; $depth ++; } } } if( $showCurrent ) echo $before . '' . esc_html( single_cat_title( '', false ) ) . '' . $after; }elseif( is_tag() ){ $queried_object = get_queried_object(); $depth = 2; if( $showCurrent ) echo $before . '' . esc_html( single_tag_title( '', false ) ) .''. $after; }elseif( is_author() ){ $depth = 2; global $author; $userdata = get_userdata( $author ); if( $showCurrent ) echo $before . '' . esc_html( $userdata->display_name ) .''. $after; }elseif( is_day() ){ $depth = 2; echo '' . esc_html( get_the_time( __( 'Y', 'bakes-and-cakes' ) ) ) . '' . $delimiter . ''; $depth ++; echo '' . esc_html( get_the_time( __( 'F', 'bakes-and-cakes' ) ) ) . '' . $delimiter . ''; $depth ++; if( $showCurrent ) echo $before .''. esc_html( get_the_time( __( 'd', 'bakes-and-cakes' ) ) ) .''. $after; }elseif( is_month() ){ $depth = 2; echo '' . esc_html( get_the_time( __( 'Y', 'bakes-and-cakes' ) ) ) . '' . $delimiter . ''; $depth++; if( $showCurrent ) echo $before .''. esc_html( get_the_time( __( 'F', 'bakes-and-cakes' ) ) ) .''. $after; }elseif( is_year() ){ $depth = 2; if( $showCurrent ) echo $before .''. esc_html( get_the_time( __( 'Y', 'bakes-and-cakes' ) ) ) .''. $after; }elseif( is_single() && !is_attachment() ) { //For Woocommerce single product if( bakes_and_cakes_is_woocommerce_activated() && 'product' === get_post_type() ){ if ( wc_get_page_id( 'shop' ) ) { //Displaying Shop link in woocommerce archive page $_name = wc_get_page_id( 'shop' ) ? get_the_title( wc_get_page_id( 'shop' ) ) : ''; if ( ! $_name ) { $product_post_type = get_post_type_object( 'product' ); $_name = $product_post_type->labels->singular_name; } echo ' ' . esc_html( $_name) . ' ' . '' . $delimiter . ''; } if ( $terms = wc_get_product_terms( $post->ID, 'product_cat', array( 'orderby' => 'parent', 'order' => 'DESC' ) ) ) { $main_term = apply_filters( 'woocommerce_breadcrumb_main_term', $terms[0], $terms ); $ancestors = get_ancestors( $main_term->term_id, 'product_cat' ); $ancestors = array_reverse( $ancestors ); foreach ( $ancestors as $ancestor ) { $ancestor = get_term( $ancestor, 'product_cat' ); if ( ! is_wp_error( $ancestor ) && $ancestor ) { echo '' . esc_html( $ancestor->name ) . '' . $delimiter . ''; $depth++; } } echo '' . esc_html( $main_term->name ) . '' . $delimiter . ''; } if( $showCurrent ) echo $before .''. esc_html( get_the_title() ) .''. $after; }else{ //For Post $cat_object = get_the_category(); $potential_parent = 0; $depth = 2; if( $show_front === 'page' && $post_page ){ //If static blog post page is set $p = get_post( $post_page ); echo '' . esc_html( $p->post_title ) . '' . $delimiter . ''; $depth++; } if( is_array( $cat_object ) ){ //Getting category hierarchy if any //Now try to find the deepest term of those that we know of $use_term = key( $cat_object ); foreach( $cat_object as $key => $object ){ //Can't use the next($cat_object) trick since order is unknown if( $object->parent > 0 && ( $potential_parent === 0 || $object->parent === $potential_parent ) ){ $use_term = $key; $potential_parent = $object->term_id; } } $cat = $cat_object[$use_term]; $cats = get_category_parents( $cat, false, ',' ); $cats = explode( ',', $cats ); foreach ( $cats as $cat ) { $cat_obj = get_term_by( 'name', $cat, 'category' ); if( is_object( $cat_obj ) ){ $term_url = get_term_link( $cat_obj->term_id ); $term_name = $cat_obj->name; echo '' . esc_html( $term_name ) . '' . $delimiter . ''; $depth ++; } } } if ( $showCurrent ) echo $before .''. esc_html( get_the_title() ) .''. $after; } }elseif( is_page() ){ $depth = 2; if( $post->post_parent ){ global $post; $depth = 2; $parent_id = $post->post_parent; $breadcrumbs = array(); while( $parent_id ){ $current_page = get_post( $parent_id ); $breadcrumbs[] = $current_page->ID; $parent_id = $current_page->post_parent; } $breadcrumbs = array_reverse( $breadcrumbs ); for ( $i = 0; $i < count( $breadcrumbs); $i++ ){ echo '' . esc_html( get_the_title( $breadcrumbs[$i] ) ) . ''; if ( $i != count( $breadcrumbs ) - 1 ) echo ' ' . esc_html( $delimiter ) . ' '; $depth++; } if ( $showCurrent ) echo ' ' . esc_html( $delimiter ) . ' ' . $before .''. esc_html( get_the_title() ) .''. $after; }else{ if ( $showCurrent ) echo $before .''. esc_html( get_the_title() ) .''. $after; } }elseif( is_search() ){ $depth = 2; if( $showCurrent ) echo $before .''. esc_html__( 'Search Results for "', 'bakes-and-cakes' ) . esc_html( get_search_query() ) . esc_html__( '"', 'bakes-and-cakes' ) .''. $after; }elseif( bakes_and_cakes_is_woocommerce_activated() && ( is_product_category() || is_product_tag() ) ){ //For Woocommerce archive page $depth = 2; if ( wc_get_page_id( 'shop' ) ) { //Displaying Shop link in woocommerce archive page $_name = wc_get_page_id( 'shop' ) ? get_the_title( wc_get_page_id( 'shop' ) ) : ''; if ( ! $_name ) { $product_post_type = get_post_type_object( 'product' ); $_name = $product_post_type->labels->singular_name; } echo ' ' . esc_html( $_name) . ' ' . '' . $delimiter . ''; } $current_term = $GLOBALS['wp_query']->get_queried_object(); if( is_product_category() ){ $ancestors = get_ancestors( $current_term->term_id, 'product_cat' ); $ancestors = array_reverse( $ancestors ); foreach ( $ancestors as $ancestor ) { $ancestor = get_term( $ancestor, 'product_cat' ); if ( ! is_wp_error( $ancestor ) && $ancestor ) { echo '' . esc_html( $ancestor->name ) . '' . $delimiter . ''; $depth ++; } } } if( $showCurrent ) echo $before . '' . esc_html( $current_term->name ) .'' . $after; }elseif( bakes_and_cakes_is_woocommerce_activated() && is_shop() ){ //Shop Archive page $depth = 2; if ( get_option( 'page_on_front' ) == wc_get_page_id( 'shop' ) ) { return; } $_name = wc_get_page_id( 'shop' ) ? get_the_title( wc_get_page_id( 'shop' ) ) : ''; $shop_url = wc_get_page_id( 'shop' ) && wc_get_page_id( 'shop' ) > 0 ? get_the_permalink( wc_get_page_id( 'shop' ) ) : home_url( '/shop' ); if ( ! $_name ) { $product_post_type = get_post_type_object( 'product' ); $_name = $product_post_type->labels->singular_name; } if( $showCurrent ) echo $before . '' . esc_html( $_name ) .''. $after; }elseif( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ) { $depth = 2; $post_type = get_post_type_object(get_post_type()); if( get_query_var('paged') ){ echo '' . esc_html( $post_type->label ) . ''; echo ' ' . $delimiter . ' ' . $before . sprintf( __('Page %s', 'bakes-and-cakes'), get_query_var('paged') ) . $after; }elseif( is_archive() ){ echo $before .''. esc_html( $post_type->label ) .''. $after; }else{ echo $before .''. esc_html( $post_type->label ) .''. $after; } }elseif( is_attachment() ){ $depth = 2; $parent = get_post( $post->post_parent ); $cat = get_the_category( $parent->ID ); if( $cat ){ $cat = $cat[0]; echo get_category_parents( $cat, TRUE, ' ' . $delimiter . ' '); echo '' . esc_html( $parent->post_title ) . '' . ' ' . $delimiter . ''; } if( $showCurrent ) echo $before .''. esc_html( get_the_title() ) .''. $after; }elseif ( is_404() ){ if( $showCurrent ) echo $before . esc_html__( '404 Error - Page not Found', 'bakes-and-cakes' ) . $after; } if( get_query_var('paged') ) echo __( ' (Page', 'bakes-and-cakes' ) . ' ' . get_query_var('paged') . __( ')', 'bakes-and-cakes' ); echo '
'; } // end bakes_and_cakes_breadcrumbs() add_action( 'bakes_and_cakes_breadcrumbs', 'bakes_and_cakes_breadcrumbs_cb' ); if( ! function_exists( 'bakes_and_cakes_slider_cb' )): /** * Callback for Home Page Slider **/ function bakes_and_cakes_slider_cb(){ $bakes_and_cakes_slider_caption = get_theme_mod( 'bakes_and_cakes_slider_caption', '1' ); $bakes_and_cakes_slider_readmore = get_theme_mod( 'bakes_and_cakes_slider_readmore', __( 'Continue Reading', 'bakes-and-cakes' ) ); $bakes_and_cakes_slider_cat = get_theme_mod( 'bakes_and_cakes_slider_cat' ); if( $bakes_and_cakes_slider_cat ){ $bakes_and_cakes_qry = new WP_Query ( array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page'=> -1, 'cat' => $bakes_and_cakes_slider_cat, 'order' => 'ASC' ) ); if( $bakes_and_cakes_qry->have_posts() ){?> array( 'id' => 'about', 'class' => 'intro' ), 'product-section' => array( 'id' => 'product', 'class' => 'featured' ), 'events-section' => array( 'id' => 'events', 'class' => 'special' ), 'our-staff-section' => array( 'id' => 'staff', 'class' => 'our-staff' ), 'testimonial-section' => array( 'id' => 'testimonials', 'class' => 'testimonial' ), 'blog-section' => array( 'id' => 'blog', 'class' => 'blog-section' ), 'promotional-section' => array( 'id' => 'promotional', 'class' => 'promotional-block' ), ); $bakes_and_cakes_enabled_section = array(); foreach ( $bakes_and_cakes_sections as $bakes_and_cakes_section ) { if ( esc_attr( get_theme_mod( 'bakes_and_cakes_ed_' . $bakes_and_cakes_section['id'] . '_section' ) ) == 1 ){ $bakes_and_cakes_enabled_section[] = array( 'id' => $bakes_and_cakes_section['id'], 'class' => $bakes_and_cakes_section['class'] ); } } return $bakes_and_cakes_enabled_section; } function bakes_and_cakes_bg_image_settings(){ $bakes_and_cakes_bg_images = array( 'staff-section' => array( 'bgimage' => 'staff' ), 'promotional-section' => array( 'bgimage' => 'promotional' ) ); $bakes_and_cakes_bg = array(); foreach($bakes_and_cakes_bg_images as $bakes_and_cakes_bg_image){ if( get_theme_mod( 'bakes_and_cakes_' . $bakes_and_cakes_bg_image['bgimage'] . '_background_image' ) ){ $bakes_and_cakes_bg[] = array( 'bgimage' => $bakes_and_cakes_bg_image['bgimage'] ); } } return $bakes_and_cakes_bg; } if( ! function_exists( 'bakes_and_cakes_footer_top' ) ) : /** * Footer Top * */ function bakes_and_cakes_footer_top(){ ?>
' . esc_html( get_bloginfo( 'name' ) ) . '.'; } ?> WordPress.'); ?> ', ''); } ?>
$id, 'post_status' => 'publish', 'cat' => $staff_cat, 'ignore_sticky_posts' => true, ); $bakes_and_cakes_qry = new WP_Query( $args ); if( !empty( $id ) && $bakes_and_cakes_qry->have_posts() ){ while( $bakes_and_cakes_qry->have_posts() ){ $bakes_and_cakes_qry->the_post(); $response .= '
'; $response .= has_post_thumbnail() ? get_the_post_thumbnail( get_the_ID(), 'bakes-and-cakes-staff-thumb' ) : bakes_and_cakes_get_fallback_svg( 'bakes-and-cakes-staff-thumb', false ); $response .= '
'; $response .= '
'; $response .= '' . esc_html( get_the_title() ) . ''; $response .= wpautop( wp_kses_post( get_the_content() ) ); $response .= '
'; } wp_reset_postdata(); } echo $response; wp_die(); } add_action( 'wp_ajax_bakes_and_cakes_team_ajax', 'bakes_and_cakes_home_team_ajax' ); add_action( 'wp_ajax_nopriv_bakes_and_cakes_team_ajax', 'bakes_and_cakes_home_team_ajax' ); /** * Query if Rara One Click Demo Import id activate */ function is_rocdi_activated(){ return class_exists( 'RDDI_init' ) ? true : false; } if( ! function_exists( 'bakes_and_cakes_change_comment_form_default_fields' ) ) : /** * Change Comment form default fields i.e. author, email & url. * https://blog.josemcastaneda.com/2016/08/08/copy-paste-hurting-theme/ */ function bakes_and_cakes_change_comment_form_default_fields( $fields ){ // get the current commenter if available $commenter = wp_get_current_commenter(); // core functionality $req = get_option( 'require_name_email' ); $aria_req = ( $req ? " aria-required='true'" : '' ); $required = ( $req ? " required" : '' ); $author = ( $req ? __( 'Name*', 'bakes-and-cakes' ) : __( 'Name', 'bakes-and-cakes' ) ); $email = ( $req ? __( 'Email*', 'bakes-and-cakes' ) : __( 'Email', 'bakes-and-cakes' ) ); // Change just the author field $fields['author'] = '

'; $fields['email'] = '

'; $fields['url'] = '

'; return $fields; } endif; add_filter( 'comment_form_default_fields', 'bakes_and_cakes_change_comment_form_default_fields' ); if( ! function_exists( 'bakes_and_cakes_change_comment_form_defaults' ) ) : /** * Change Comment Form defaults * https://blog.josemcastaneda.com/2016/08/08/copy-paste-hurting-theme/ */ function bakes_and_cakes_change_comment_form_defaults( $defaults ){ $defaults['comment_field'] = '

'; return $defaults; } endif; add_filter( 'comment_form_defaults', 'bakes_and_cakes_change_comment_form_defaults' ); if( ! function_exists( 'bakes_and_cakes_single_post_schema' ) ) : /** * Single Post Schema * * @return string */ function bakes_and_cakes_single_post_schema() { if ( is_singular( 'post' ) ) { global $post; $custom_logo_id = get_theme_mod( 'custom_logo' ); $site_logo = wp_get_attachment_image_src( $custom_logo_id , 'bakes-and-cakes-schema' ); $images = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' ); $excerpt = bakes_and_cakes_escape_text_tags( $post->post_excerpt ); $content = $excerpt === "" ? mb_substr( bakes_and_cakes_escape_text_tags( $post->post_content ), 0, 110 ) : $excerpt; $schema_type = ! empty( $custom_logo_id ) && has_post_thumbnail( $post->ID ) ? "BlogPosting" : "Blog"; $args = array( "@context" => "http://schema.org", "@type" => $schema_type, "mainEntityOfPage" => array( "@type" => "WebPage", "@id" => esc_url( get_permalink( $post->ID ) ) ), "headline" => esc_html( get_the_title( $post->ID ) ), "datePublished" => esc_html( get_the_time( DATE_ISO8601, $post->ID ) ), "dateModified" => esc_html( get_post_modified_time( DATE_ISO8601, __return_false(), $post->ID ) ), "author" => array( "@type" => "Person", "name" => bakes_and_cakes_escape_text_tags( get_the_author_meta( 'display_name', $post->post_author ) ) ), "description" => ( class_exists('WPSEO_Meta') ? WPSEO_Meta::get_value( 'metadesc' ) : $content ) ); if ( has_post_thumbnail( $post->ID ) ) : $args['image'] = array( "@type" => "ImageObject", "url" => $images[0], "width" => $images[1], "height" => $images[2] ); endif; if ( ! empty( $custom_logo_id ) ) : $args['publisher'] = array( "@type" => "Organization", "name" => esc_html( get_bloginfo( 'name' ) ), "description" => wp_kses_post( get_bloginfo( 'description' ) ), "logo" => array( "@type" => "ImageObject", "url" => $site_logo[0], "width" => $site_logo[1], "height" => $site_logo[2] ) ); endif; echo '' , PHP_EOL; } } endif; add_action( 'wp_head', 'bakes_and_cakes_single_post_schema' ); if( ! function_exists( 'bakes_and_cakes_escape_text_tags' ) ) : /** * Remove new line tags from string * * @param $text * @return string */ function bakes_and_cakes_escape_text_tags( $text ) { return (string) str_replace( array( "\r", "\n" ), '', strip_tags( $text ) ); } endif; if( ! function_exists( 'bakes_and_cakes_admin_notice' ) ) : /** * Admin notice for getting started page */ function bakes_and_cakes_admin_notice(){ global $pagenow; $theme_args = wp_get_theme(); $meta = get_option( 'bakes_and_cakes_admin_notice' ); $name = $theme_args->__get( 'Name' ); $current_screen = get_current_screen(); if( 'themes.php' == $pagenow && !$meta ){ if( $current_screen->id !== 'dashboard' && $current_screen->id !== 'themes' ){ return; } if( is_network_admin() ){ return; } if( ! current_user_can( 'manage_options' ) ){ return; } ?>

$_wp_additional_image_sizes[ $_size ]['width'], 'height' => $_wp_additional_image_sizes[ $_size ]['height'], 'crop' => $_wp_additional_image_sizes[ $_size ]['crop'] ); } } // Get only 1 size if found if ( $size ) { if( isset( $sizes[ $size ] ) ) { return $sizes[ $size ]; } else { return false; } } return $sizes; } endif; if ( ! function_exists( 'bakes_and_cakes_get_fallback_svg' ) ) : /** * Get Fallback SVG */ function bakes_and_cakes_get_fallback_svg( $post_thumbnail, $echo = true ) { if( ! $post_thumbnail ){ return; } $image_size = bakes_and_cakes_get_image_sizes( $post_thumbnail ); if( $image_size && $echo ){ ?>
'; return $image_size_return; } } endif;