'.esc_html__('Sparkle Themes','appzend').'' ); } } add_action( 'appzend_copyright', 'appzend_footer_copyright', 5 ); /** * Breadcrumbs Section. */ if (! function_exists( 'appzend_breadcrumbs' ) ): function appzend_breadcrumbs(){ $breadcrumb_image = get_theme_mod('appzend_breadcrumbs_image'); ?>

desktop; if($align->tablet) $css .= " tablet-".$align->tablet ; if($align->mobile) $css .= " mobile-".$align->mobile; return $css; } } return 'text-center'; } } if ( ! function_exists( 'appzend_get_nav_menus' ) ) : /** * Get Nav Menus Array * * @since AppZend 1.0.0 * * @param null * @return array $nav_menus * */ function appzend_get_nav_menus( $options = array() ) { $appzend_get_nav_menus = array(); $nav_menus = wp_get_nav_menus(); foreach ( $nav_menus as $menu ) { $appzend_get_nav_menus[ $menu->term_id ] = ucwords( $menu->name ); } return apply_filters( 'appzend_get_nav_menus', $appzend_get_nav_menus ); } endif; if(! function_exists('appzend_text_alignment_class')){ function appzend_text_alignment_class(){ return array( 'text-left' => __("Left", 'appzend'), 'text-center' => __("Center", 'appzend'), 'text-right' => __("Right", 'appzend'), ); } } if(!function_exists('appzend_body_class')){ function appzend_body_class( $classes ) { $classes[] = 'site-layout-'.get_theme_mod( 'appzend_site_layout', 'full_width'); return $classes; } add_filter( 'body_class', 'appzend_body_class'); }