File: /home/elrashedytravel/public_html/wp-content/themes/coffee-tea/inc/extras.php
<?php
/**
* Custom functions that act independently of the theme templates.
*
* Eventually, some of the functionality here could be replaced by core features.
*
* @package Coffee Tea
*/
/**
* Adds custom classes to the array of body classes.
*
* @param array $coffee_tea_classes Classes for the body element.
* @return array
*/
function coffee_tea_body_classes( $coffee_tea_classes ) {
// Adds a class of group-blog to blogs with more than 1 published author.
if ( is_multi_author() ) {
$coffee_tea_classes[] = 'group-blog';
}
// Adds a class of hfeed to non-singular pages.
if ( ! is_singular() ) {
$coffee_tea_classes[] = 'hfeed';
}
return $coffee_tea_classes;
}
add_filter( 'body_class', 'coffee_tea_body_classes' );
if ( ! function_exists( 'wp_body_open' ) ) {
/**
* Backward compatibility for wp_body_open hook.
*
* @since 1.0.0
*/
function wp_body_open() {
do_action( 'wp_body_open' );
}
}
/**
* Breadcrumb Title
*/
if ( ! function_exists( 'coffee_tea_breadcrumb_title' ) ) {
function coffee_tea_breadcrumb_title() {
if ( is_home() || is_front_page()):
single_post_title();
elseif ( is_day() ) :
/* translators: %s: Daily Archives. */
printf( __( 'Daily Archives: %s', 'coffee-tea' ), get_the_date() );
elseif ( is_month() ) :
/* translators: %s: Monthly Archives. */
printf( __( 'Monthly Archives: %s', 'coffee-tea' ), (get_the_date( 'F Y' ) ));
elseif ( is_year() ) :
/* translators: %s: Yearly Archives. */
printf( __( 'Yearly Archives: %s', 'coffee-tea' ), (get_the_date( 'Y' ) ) );
elseif ( is_category() ) :
/* translators: %s: Category Archives. */
printf( __( 'Category Archives: %s', 'coffee-tea' ), (single_cat_title( '', false ) ));
elseif ( is_tag() ) :
/* translators: %s: Tag Archives. */
printf( __( 'Tag Archives: %s', 'coffee-tea' ), (single_tag_title( '', false ) ));
elseif ( is_404() ) :
printf( __( 'Error 404', 'coffee-tea' ));
elseif ( is_author() ) :
/* translators: %s: Author. */
printf( __( 'Author: %s', 'coffee-tea' ), (get_the_author( '', false ) ));
elseif ( class_exists( 'woocommerce' ) ) :
if ( is_shop() ) {
woocommerce_page_title();
}
elseif ( is_cart() ) {
the_title();
}
elseif ( is_checkout() ) {
the_title();
}
else {
the_title();
}
else :
the_title();
endif;
}
}
/**
* Breadcrumb Content
*/
function coffee_tea_breadcrumbs() {
$showOnHome = esc_html__('1','coffee-tea'); // 1 - Show breadcrumbs on the homepage, 0 - don't show
$delimiter = ''; // Delimiter between breadcrumb
$home = esc_html__('Home','coffee-tea'); // Text for the 'Home' link
$showCurrent= esc_html__('1','coffee-tea'); // Current post/page title in breadcrumb in use 1, Use 0 for don't show
$before = '<li class="active">'; // Tag before the current Breadcrumb
$after = '</li>'; // Tag after the current Breadcrumb
$seprator = get_theme_mod('coffee_tea_breadcrumb_seprator','/');
global $post;
$homeLink = home_url();
if (is_home() || is_front_page()) {
if ($showOnHome == 1) echo '<li><a href="' . esc_url($homeLink) . '">' . esc_html($home) . '</a></li>';
} else {
echo '<li><a href="' . esc_url($homeLink) . '">' . esc_html($home) . '</a> ' . ' ' . wp_kses_post($seprator) . ' ';
if ( is_category() )
{
$thisCat = get_category(get_query_var('cat'), false);
if ($thisCat->parent != 0) echo get_category_parents($thisCat->parent, TRUE, ' ' . ' ');
echo $before . esc_html__('Archive by category','coffee-tea').' "' . esc_html(single_cat_title('', false)) . '"' .$after;
}
elseif ( is_search() )
{
echo $before . esc_html__('Search results for','coffee-tea').' "' . esc_html(get_search_query()) . '"' . $after;
}
elseif ( is_day() )
{
echo '<a href="' . esc_url(get_year_link(get_the_time('Y'))) . '">' . esc_html(get_the_time('Y')) . '</a> ' . ' ' . wp_kses_post($seprator) . ' ';
echo '<a href="' . esc_url(get_month_link(get_the_time('Y'),get_the_time('m'))) . '">' . esc_html(get_the_time('F')) . '</a> '. ' ' . wp_kses_post($seprator) . ' ';
echo $before . esc_html(get_the_time('d')) . $after;
}
elseif ( is_month() )
{
echo '<a href="' . esc_url(get_year_link(get_the_time('Y'))) . '">' . esc_html(get_the_time('Y')) . '</a> ' . esc_attr($delimiter) . ' ' . wp_kses_post($seprator) . ' ';
echo $before . esc_html(get_the_time('F')) . $after;
}
elseif ( is_year() )
{
echo $before . esc_html(get_the_time('Y')) . $after;
}
elseif ( is_single() && !is_attachment() )
{
if ( get_post_type() != 'post' )
{
if ( class_exists( 'WooCommerce' ) ) {
if ($showCurrent == 1) echo ' ' . esc_attr($delimiter) . '  ' . $before . wp_kses_post(get_the_title()) . $after;
}else{
$post_type = get_post_type_object(get_post_type());
$slug = $post_type->rewrite;
echo '<a href="' . esc_url($homeLink) . '/' . $slug['slug'] . '/">' . $post_type->labels->singular_name . '</a>';
if ($showCurrent == 1) echo ' ' . esc_attr($delimiter) . ' ' . wp_kses_post($seprator) . ' ' . $before . wp_kses_post(get_the_title()) . $after;
}
}
else
{
$cat = get_the_category(); $cat = $cat[0];
$cats = get_category_parents($cat, TRUE, ' ' . esc_attr($delimiter) . ' ' . wp_kses_post($seprator) . ' ');
if ($showCurrent == 0) $cats = preg_replace("#^(.+)\s$delimiter\s$#", "$1", $cats);
echo $cats;
if ($showCurrent == 1) echo $before . esc_html(get_the_title()) . $after;
}
}
elseif ( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ) {
if ( class_exists( 'WooCommerce' ) ) {
if ( is_shop() ) {
$thisshop = woocommerce_page_title();
}
}
else {
$post_type = get_post_type_object(get_post_type());
echo $before . $post_type->labels->singular_name . $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);
if(!empty($cat)){
$cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . esc_attr($delimiter) . ' ' . wp_kses_post($seprator) . ' ');
}
echo '<a href="' . esc_url(get_permalink($parent)) . '">' . $parent->post_title . '</a>';
if ($showCurrent == 1) echo ' ' . esc_attr($delimiter) . ' ' . $before . esc_html(get_the_title()) . $after;
}
elseif ( is_page() && !$post->post_parent )
{
if ($showCurrent == 1) echo $before . esc_html(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[] = '<a href="' . esc_url(get_permalink($page->ID)) . '">' . esc_html(get_the_title($page->ID)) . '</a>' . ' ' . wp_kses_post($seprator) . ' ';
$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 ' ' . esc_attr($delimiter) . ' ' . wp_kses_post($seprator) . ' ';
}
if ($showCurrent == 1) echo ' ' . esc_attr($delimiter) . ' ' . $before . esc_html(get_the_title()) . $after;
}
elseif ( is_tag() )
{
echo $before . esc_html__('Posts tagged ','coffee-tea').' "' . esc_html(single_tag_title('', false)) . '"' . $after;
}
elseif ( is_author() ) {
global $author;
$userdata = get_userdata($author);
echo $before . esc_html__('Articles posted by ','coffee-tea').'' . $userdata->display_name . $after;
}
elseif ( is_404() ) {
echo $before . esc_html__('Error 404 ','coffee-tea'). $after;
}
if ( get_query_var('paged') ) {
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo '';
echo ' ( ' . esc_html__('Page','coffee-tea') . '' . esc_html(get_query_var('paged')). ' )';
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo '';
}
echo '</li>';
}
}
function coffee_tea_default_styles() {
// Begin Style
$coffee_tea_css = '<style>';
$coffee_tea_logo_width = get_theme_mod('coffee_tea_logo_width');
$coffee_tea_css .= '
.main-header .logo a.custom-logo-link img,.main-header .logo a.custom-logo-link img,.logo img, .mobile-logo img{
max-width: ' . esc_attr($coffee_tea_logo_width) . 'px !important;
max-height: ' . esc_attr($coffee_tea_logo_width) . 'px !important;
overflow: hidden;
display: inline-block;
}
';
// End Style
$coffee_tea_css .= '</style>';
echo $coffee_tea_css;
}
add_action('wp_head', 'coffee_tea_default_styles', 999); // Use a priority to ensure it loads after other styles