PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
title
/
layouts
/
breadcrumbs
<?php if ( ! function_exists( 'webon_core_register_breadcrumbs_title_layout' ) ) { /** * Function that add variation layout for this module * * @param array $layouts * * @return array */ function webon_core_register_breadcrumbs_title_layout( $layouts ) { $layouts['breadcrumbs'] = 'WebOnCoreBreadcrumbsTitle'; return $layouts; } add_filter( 'webon_core_filter_register_title_layouts', 'webon_core_register_breadcrumbs_title_layout'); } if ( ! function_exists( 'webon_core_add_breadcrumbs_title_layout_option' ) ) { /** * Function that set new value into title layout options map * * @param array $layouts - module layouts * * @return array */ function webon_core_add_breadcrumbs_title_layout_option( $layouts ) { $layouts['breadcrumbs'] = esc_html__( 'Breadcrumbs', 'webon-core' ); return $layouts; } add_filter( 'webon_core_filter_title_layout_options', 'webon_core_add_breadcrumbs_title_layout_option' ); } if ( ! function_exists( 'webon_core_breadcrumbs' ) ) { /** * Function that renders breadcrumbs html */ function webon_core_breadcrumbs() { $page_id = qode_framework_get_page_id(); // Breadcrumbs label $labels = apply_filters( 'webon_core_filter_breadcrumbs_label', array( 'home' => esc_html__( 'Home', 'webon-core' ), 'tag' => esc_html__( 'Posts tagged "%s"', 'webon-core' ), 'author' => esc_html__( 'Posted by %s', 'webon-core' ), 'search' => esc_html__( 'Search results for "%s"', 'webon-core' ), '404' => esc_html__( '404 - Page not found', 'webon-core' ), 'query_paged' => esc_html__( '(Page %s)', 'webon-core' ) ) ); // Breadcrumbs variables $settings = apply_filters( 'webon_core_filter_breadcrumbs_settings', array( 'wrap_before' => '<div itemprop="breadcrumb" class="qodef-breadcrumbs">', 'wrap_after' => '</div>', 'home_url' => esc_url( home_url( '/' ) ), 'link' => '<a itemprop="url" class="qodef-breadcrumbs-link" href="%1$s"><span itemprop="title">' . '%2$s' . '</span></a>', 'current_item' => '<span itemprop="title" class="qodef-breadcrumbs-current">' . '%1$s' . '</span>', 'separator' => '<span class="qodef-breadcrumbs-separator"></span>' ) ); $wrap_child = ''; if ( is_home() && ! is_front_page() ) { $wrap = sprintf( $settings['link'], $settings['home_url'], $labels['home'] ) . $settings['separator'] . sprintf( $settings['current_item'], get_the_title( $page_id ) ); } elseif ( is_home() || is_front_page() ) { $wrap = sprintf( $labels['home'] ); } else { $wrap = sprintf( $settings['link'], $settings['home_url'], $labels['home'] ) . $settings['separator']; if ( is_tag() ) { $wrap_child .= sprintf( $settings['current_item'], sprintf( $labels['tag'], single_tag_title( '', false ) ) ); } elseif ( is_day() ) { $wrap_child .= sprintf( $settings['link'], get_year_link( get_the_time( 'Y' ) ), get_the_time( 'Y' ) ) . $settings['separator']; $wrap_child .= sprintf( $settings['link'], get_month_link( get_the_time( 'Y' ), get_the_time( 'm' ) ), get_the_time( 'F' ) ) . $settings['separator']; $wrap_child .= sprintf( $settings['current_item'], get_the_time( 'd' ) ); } elseif ( is_month() ) { $wrap_child .= sprintf( $settings['link'], get_year_link( get_the_time( 'Y' ) ), get_the_time( 'Y' ) ) . $settings['separator']; $wrap_child .= sprintf( $settings['current_item'], get_the_time( 'F' ) ); } elseif ( is_year() ) { $wrap_child .= sprintf( $settings['current_item'], get_the_time( 'Y' ) ); } elseif ( is_author() ) { $wrap_child .= sprintf( $settings['current_item'], sprintf( $labels['author'], get_the_author_meta( 'display_name', get_query_var( 'author' ) ) ) ); } elseif ( is_category() ) { $category = get_category( get_query_var( 'cat' ), false ); if ( isset( $category->parent ) && $category->parent !== 0 ) { $wrap_child .= get_category_parents( $category->parent, true, $settings['separator'] ); } $wrap_child .= sprintf( $settings['current_item'], single_cat_title( '', false ) ); } elseif ( is_search() ) { $wrap_child .= sprintf( $settings['current_item'], sprintf( $labels['search'], get_search_query() ) ); } elseif ( is_404() ) { $wrap_child .= sprintf( $settings['current_item'], $labels['404'] ); } elseif ( is_single() ) { if ( is_singular( 'post' ) ) { $category = get_the_category(); $wrap_child .= get_category_parents( $category[0], true, $settings['separator'] ); } $wrap_child .= sprintf( $settings['current_item'], get_the_title() ); } elseif ( is_page() ) { global $post; if ( $post->post_parent ) { $parent_ids = array(); $parent_ids[] = $post->post_parent; foreach ( $parent_ids as $parent_id ) { $wrap_child .= sprintf( $settings['link'], get_the_permalink( $parent_id ), get_the_title( $parent_id ) ) . $settings['separator']; } } $wrap_child .= sprintf( $settings['current_item'], get_the_title() ); } if ( get_query_var( 'paged' ) ) { $wrap_child .= sprintf( $settings['current_item'], sprintf( $labels['query_paged'], get_query_var( 'paged' ) ) ); } } // Breadcrumbs html template $breadcrumbs_html = ''; if ( ! empty( $wrap ) ) { $breadcrumbs_html = $settings['wrap_before'] . $wrap . apply_filters( 'webon_core_filter_breadcrumbs_content', $wrap_child, $settings ) . $settings['wrap_after']; } echo apply_filters( 'webon_core_filter_breadcrumbs_template', $breadcrumbs_html ); } }
[-] breadcrumbs-title.php
[edit]
[+]
..
[+]
templates
[-] include.php
[edit]
[-] helper.php
[edit]