X7ROOT File Manager
Current Path:
/home/oakwood/public_html/wp-content/themes/rife-free/advance/utilities
home
/
oakwood
/
public_html
/
wp-content
/
themes
/
rife-free
/
advance
/
utilities
/
ðŸ“
..
📄
core.php
(6.19 KB)
📄
core_fe.php
(20.71 KB)
📄
cpt-album.php
(26.57 KB)
📄
cpt-people.php
(14.77 KB)
📄
cpt-work.php
(27.98 KB)
📄
cpt.php
(58.4 KB)
📄
deprecated.php
(2.12 KB)
📄
feature.php
(563 B)
📄
footer.php
(8.07 KB)
📄
header.php
(16.86 KB)
📄
layout-parts.php
(46.47 KB)
📄
media.php
(20.97 KB)
📄
menu.php
(3.1 KB)
📄
password.php
(2.05 KB)
📄
posts.php
(37.45 KB)
📄
woocommerce.php
(39 KB)
📄
wpml.php
(4.84 KB)
Editing: header.php
<?php /** * Functions that operates in themes header element */ if ( ! function_exists( 'apollo13framework_header_logo' ) ) { /** * Prints logo of site */ function apollo13framework_header_logo() { global $apollo13framework_a13; $logo_sources = array(); $logo_sizes = array(); $logos_name_map = array( 'normal' => 'logo_image', 'sticky' => 'header_sticky_logo_image', ); //fill sources & sizes foreach( $logos_name_map as $variant => $name ) { $logo_sources[ $variant ] = $apollo13framework_a13->get_option_media_url( $name ); $temp = $apollo13framework_a13->get_option( $name ); $logo_sizes[ $variant ]['width'] = isset( $temp['width'] ) ? $temp['width'] : ''; $logo_sizes[ $variant ]['height'] = isset( $temp['height'] ) ? $temp['height'] : ''; $logo_sizes[ $variant ]['id'] = isset( $temp['id'] ) ? $temp['id'] : ''; } //check for WordPress feature logo if theme logo is not present if( strlen( $logo_sources['normal'] ) === 0 && has_custom_logo() ){ $logo_sizes['normal']['id'] = get_theme_mod( 'custom_logo' ); $logo_sizes['normal']['width'] = ''; $logo_sizes['normal']['height'] = ''; $logo_sources['normal'] = wp_get_attachment_image_src( $logo_sizes['normal']['id'], 'full' ); $logo_sources['normal'] = $logo_sources['normal'][0];//support for PHP 5.3 or lower } $img_logo = $apollo13framework_a13->get_option( 'logo_type' ) === 'image' && strlen( $logo_sources['normal'] ); $color_variant = apollo13framework_horizontal_header_color_variant(); $logo_from_variants = $apollo13framework_a13->get_option( 'logo_from_variants' ) === 'on' && $apollo13framework_a13->get_option( 'header_color_variants', 'on' ) !== 'off'; $normal_logo_classes = array('logo', 'normal-logo'); $normal_logo_classes[] = $img_logo ? 'image-logo' : 'text-logo'; $html = '<a class="'. esc_attr( implode(' ', $normal_logo_classes ) ) .'" href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home"'.apollo13framework_get_schema_args('url').'>'; if ( $img_logo ) { $html .= '<img src="' . esc_url( $logo_sources['normal'] ) . '" alt="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" width="' . esc_attr( $logo_sizes['normal']['width'] ) . '" height="' . esc_attr( $logo_sizes['normal']['height'] ) . '"'.apollo13framework_get_schema_args('logo_image').' />'; } else { $logo_text = esc_html( $apollo13framework_a13->get_option( 'logo_text' ) ); //try site name if no text $logo_text = strlen($logo_text) > 0 ? $logo_text : get_bloginfo('name'); $html .= $logo_text; } $html .= '</a>'; //we add other logo variants only for image logo if ( $img_logo && $logo_from_variants ) { foreach($logo_sources as $variant => $src){ if($variant === 'normal'){ //we already printed it out continue; } //print logo variant if there is any source if(strlen($src)){ $variant_logo_classes = array('logo', 'image-logo', $variant.'-logo'); if( $color_variant !== $variant ){ $variant_logo_classes[] = 'hidden-logo'; } $html .= '<a class="'.esc_attr( implode(' ', $variant_logo_classes ) ).'" href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home">'; $html .= '<img src="' . esc_url( $src ) . '" alt="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" width="' . esc_attr( $logo_sizes[ $variant ]['width'] ) . '" height="' . esc_attr( $logo_sizes[ $variant ]['height'] ) . '" />'; $html .= '</a>'; } } } //everything is escaped on creation echo $html; } } if ( ! function_exists( 'apollo13framework_header_search' ) ) { /** * Prints out search form usually used in header * * @return string HTML */ function apollo13framework_header_search() { global $apollo13framework_a13; if($apollo13framework_a13->get_option( 'header_search' ) === 'on'){ return '<div class="search-container">' . '<div class="search">' . '<span class="a13icon-search"></span>' . apollo13framework_search_form( '', true ) . '<span class="a13icon-cross close"></span>' . '</div>' . //only if plugin "SearchWP Live Ajax Search" is activated ( class_exists('SearchWP_Live_Search')? '<div id="search-results-header"></div>' : '' ) . '</div>'; } return ''; } } if ( ! function_exists( 'apollo13framework_header_menu' ) ) { /** * Prints main menu usually located in header * * @param string $walker type of walker we should run this menu with */ function apollo13framework_header_menu( $walker = '' ) { /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. * The menu assigned to the primary position is the one used. * If none is assigned, the menu with the lowest ID is used. */ global $apollo13framework_a13; $menu_hover_effect = $apollo13framework_a13->get_option('menu_hover_effect'); $menu_classes = 'top-menu'; $menu_classes .= (strlen($menu_hover_effect) && $menu_hover_effect !== 'none') ? ' with-effect menu--'.$menu_hover_effect : ''; $menu_classes .= $apollo13framework_a13->get_option('submenu_open_icons') === 'on' ? ' opener-icons-on' : ' opener-icons-off'; $is_menu = has_nav_menu( 'header-menu' ); $menu_args = array( 'container' => false, 'link_before' => '<span>', 'link_after' => '</span>', 'menu_class' => $menu_classes, 'theme_location' => 'header-menu', 'items_wrap' => '<ul class="%2$s">%3$s</ul>', ); $no_menu_args = array( 'link_before' => '<span>', 'link_after' => '</span>', 'container' => 'ul', 'before' => '', 'after' => '', 'menu_class' => $menu_classes ); if($is_menu){ /** @noinspection PhpIncludeInspection */ require_once( get_theme_file_path( 'advance/walkers/classic.php' ) ); $menu_args = array( 'container' => 'div', 'container_class' => 'menu-container', 'link_before' => '<span>', 'link_after' => '</span>', 'menu_class' => $menu_classes, 'theme_location' => 'header-menu', 'walker' => new A13FRAMEWORK_menu_walker, 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>', ); } if ( $is_menu ){ wp_nav_menu( $menu_args ); } else{ //no walker if($walker === ''){ echo '<div class="menu-container">'; } if( ! isset( $no_menu_args['walker'] ) ){ /** @noinspection PhpIncludeInspection */ require_once( get_theme_file_path( 'advance/walkers/menu-pages.php' ) ); $no_menu_args['walker'] = new A13FRAMEWORK_pages_menu_walker; } wp_page_menu( $no_menu_args ); //no walker if($walker === ''){ echo '</div>'; } } } } if ( ! function_exists( 'apollo13framework_get_header_toolbar' ) ) { /** * Prints out header tools * * @param int $icons taken by reference so it can be used back in place of call * * @return string HTML */ function apollo13framework_get_header_toolbar( &$icons ) { global $apollo13framework_a13, $woocommerce; $hidden_sidebar = is_active_sidebar( 'side-widget-area' ); $basket_sidebar = apollo13framework_is_woocommerce_activated() && is_active_sidebar( 'basket-widget-area' ); $header_search = $apollo13framework_a13->get_option( 'header_search' ) === 'on'; $allow_mobile_menu = $apollo13framework_a13->get_option( 'header_main_menu' ) === 'on' && $apollo13framework_a13->get_option( 'menu_allow_mobile_menu' ) !== 'off'; $button = $apollo13framework_a13->get_option( 'header_button' ); $button_link = $apollo13framework_a13->get_option( 'header_button_link' ); $button_new_tab = $apollo13framework_a13->get_option( 'header_button_link_target' ) === 'on' ? ' target="_blank"' : ''; $button_on_mobile = $apollo13framework_a13->get_option( 'header_button_display_on_mobile' ) === 'off' ? ' hide_on_mobile' : ''; $is_button = strlen( $button ); $icons = 3; //default or custom icons $mm_type = $apollo13framework_a13->get_option( 'header_tools_mobile_menu_icon_type' ); $hs_type = $apollo13framework_a13->get_option( 'header_tools_hidden_sidebar_icon_type' ); $bs_type = $apollo13framework_a13->get_option( 'header_tools_basket_sidebar_icon_type' ); $hsrch_type = $apollo13framework_a13->get_option( 'header_tools_header_search_icon_type' ); //mobile menu icon $mobile_menu_icon = $mm_type === 'custom' ? 'fa fa-'.$apollo13framework_a13->get_option( 'header_tools_mobile_menu_icon' ) : 'a13icon-menu'; //hidden sidebar icon $hidden_sidebar_icon = $hs_type === 'custom' ? 'fa fa-'.$apollo13framework_a13->get_option( 'header_tools_hidden_sidebar_icon' ) : 'a13icon-add-to-list'; //icons with no option for animation $basket_sidebar_icon = $bs_type === 'custom' ? 'fa fa-'.$apollo13framework_a13->get_option( 'header_tools_basket_sidebar_icon' ) : 'a13icon-cart'; $header_search_icon = $hsrch_type === 'custom' ? 'fa fa-'.$apollo13framework_a13->get_option( 'header_tools_header_search_icon' ) : 'a13icon-search'; //count how many icons are used if ( ! $hidden_sidebar ) { $icons --; } if ( ! $basket_sidebar ) { $icons --; } if ( ! $header_search ) { $icons --; } $classes = ' icons-' . $icons; //check if only mobile menu is used if($icons === 0 && !$is_button && $allow_mobile_menu){ $classes .= ' only-menu'; } //prepare icons HTML $tools_html = ( $basket_sidebar ? '<button id="basket-menu-switch" class="'.esc_attr($basket_sidebar_icon).' tool" title="' . esc_attr__( 'Shop sidebar', 'rife-free' ) . '"><span id="basket-items-count" class="zero">' . esc_html( $woocommerce->cart->cart_contents_count ) . '</span><span class="screen-reader-text">' . esc_attr__( 'Shop sidebar', 'rife-free' ) . '</span></button>' : '' ) . ( $header_search ? '<button id="search-button" class="'.esc_attr($header_search_icon).' tool" title="' . esc_attr_x( 'Search', 'action', 'rife-free' ) . '"><span class="screen-reader-text">' . esc_attr_x( 'Search', 'action', 'rife-free' ) . '</span></button>' : '' ) . ( $hidden_sidebar ? '<button id="side-menu-switch" class="'.esc_attr($hidden_sidebar_icon).' tool" title="' . esc_attr__( 'More info', 'rife-free' ) . '">'.($hs_type === 'animated'? '<i></i>' : '').'<span class="screen-reader-text">' . esc_attr__( 'More info', 'rife-free' ) . '</span></button>' : '' ) . ( $allow_mobile_menu ? '<button id="mobile-menu-opener" class="'.esc_attr($mobile_menu_icon).' tool" title="' . esc_attr__( 'Main menu', 'rife-free' ) . '">'.($mm_type === 'animated'? '<i></i>' : '').'<span class="screen-reader-text">' . esc_attr__( 'Main menu', 'rife-free' ) . '</span></button>' : '' ) . ( $is_button? '<a class="tools_button'.esc_attr($button_on_mobile).'" href="'.esc_url($button_link).'" '.$button_new_tab.'>'.esc_html( $button ).'</a>' : '' ); $tools_html = trim( apply_filters( 'apollo13framework_header_tools', $tools_html) ); if(strlen($tools_html)){//$icons > 0 || $allow_mobile_menu || $is_button return '<div id="header-tools" class="' . esc_attr( $classes ) . '">'.$tools_html.'</div>'; } return ''; } } if ( ! function_exists( 'apollo13framework_content_under_header' ) ) { /** * Checks if for current page content should be hidden under header */ function apollo13framework_content_under_header() { global $apollo13framework_a13; $page_type = apollo13framework_what_page_type_is_it(); $value = 'off'; //albums list - first cause it is also page type! if ( $page_type['albums_list'] ) { $value = $apollo13framework_a13->get_option( 'albums_list_content_under_header' ); } //works list - before page cause it is also page type! elseif ( $page_type['works_list'] ) { $value = $apollo13framework_a13->get_option( 'works_list_content_under_header' ); } elseif($page_type['product']){ $value = $apollo13framework_a13->get_option( 'product_content_under_header', 'off' ); } //cart and others not sidebar/title pages of woocommerce elseif( ( $page_type['shop'] && !apollo13framework_is_woocommerce_sidebar_page() ) || //wish list ( class_exists( 'YITH_WCWL' ) && (get_the_ID() === (int)yith_wcwl_object_id( get_option( 'yith_wcwl_wishlist_page_id' ) ) ) ) ){ $value = $apollo13framework_a13->get_option( 'shop_no_major_pages_content_under_header', 'off' ); } //shop elseif ( $page_type['shop'] ) { $value = $apollo13framework_a13->get_option( 'shop_content_under_header' ); } //pages, posts, albums, work elseif ( $page_type['page'] || $page_type['album'] || $page_type['work'] || $page_type['post'] ) { $value = $apollo13framework_a13->get_meta('_content_under_header', get_the_ID() ); } //blog elseif ( $page_type['blog_type'] ) { $value = $apollo13framework_a13->get_option( 'blog_content_under_header' ); } return $value; } } if ( ! function_exists( 'apollo13framework_theme_header' ) ) { /** * Print whole header */ function apollo13framework_theme_header() { global $apollo13framework_a13; //Header Footer Elementor Plugin support if ( function_exists( 'hfe_render_header' ) ) { hfe_render_header(); } if( $apollo13framework_a13->get_option( 'header_switch', 'on' ) === 'off' ){ //no theme header return; } if ( function_exists( 'elementor_location_exits' ) && elementor_location_exits( 'header', true ) ) { echo '<div class="container-elementor-header">'; } if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'header' ) ) { $header_type = $apollo13framework_a13->get_option( 'header_type' ); $header_variant = $apollo13framework_a13->get_option( 'header_horizontal_variant' ); if(strpos($header_variant, 'one_line') !== false){ $header_subtype = 'one-line'; } else{ $header_subtype = 'multi-line'; } get_template_part( 'header-variants/' . $header_type, $header_subtype ); } if ( function_exists( 'elementor_location_exits' ) && elementor_location_exits( 'header', true ) ) { echo '</div>';//.container-elementor-header } } } function apollo13framework_header_button() { global $apollo13framework_a13; $button = $apollo13framework_a13->get_option( 'header_button' ); $button_link = $apollo13framework_a13->get_option( 'header_button_link' ); $button_new_tab = $apollo13framework_a13->get_option( 'header_button_link_target' ) === 'on'; $button_on_mobile = $apollo13framework_a13->get_option( 'header_button_display_on_mobile' ) === 'off' ? ' hide_on_mobile' : ''; echo '<a class="tools_button'.esc_attr($button_on_mobile).'" href="'.esc_url($button_link).'" '. ( $button_new_tab ? ' target="_blank"' : '' ).'>'.esc_html( $button ).'</a>'; } function apollo13framework_header_button_css() { global $apollo13framework_a13; $header_tools_color = apollo13framework_make_css_rule( 'color', $apollo13framework_a13->get_option_color_rgba( 'header_tools_color' ) ); $header_tools_color_hover = apollo13framework_make_css_rule( 'color', $apollo13framework_a13->get_option_color_rgba( 'header_tools_color_hover' ) ); $header_button_font_size = apollo13framework_make_css_rule( 'font-size', $apollo13framework_a13->get_option( 'header_button_font_size' ), '%spx' ); $header_button_weight = apollo13framework_make_css_rule( 'font-weight', $apollo13framework_a13->get_option( 'header_button_weight' ) ); $header_button_bg_color = apollo13framework_make_css_rule( 'background-color', $apollo13framework_a13->get_option_color_rgba( 'header_button_bg_color' ) ); $header_button_bg_color_hover = apollo13framework_make_css_rule( 'background-color', $apollo13framework_a13->get_option_color_rgba( 'header_button_bg_color_hover' ) ); $header_button_border_color = apollo13framework_make_css_rule( 'border-color', $apollo13framework_a13->get_option_color_rgba( 'header_button_border_color' ) ); $header_button_border_color_hover = apollo13framework_make_css_rule( 'border-color', $apollo13framework_a13->get_option_color_rgba( 'header_button_border_color_hover' ) ); $css = " .tools_button{ $header_button_font_size $header_button_weight $header_tools_color $header_button_bg_color $header_button_border_color } .tools_button:hover{ $header_tools_color_hover $header_button_bg_color_hover $header_button_border_color_hover }"; return $css; } function apollo13framework_header_button_partial_css($response) { return apollo13framework_prepare_partial_css($response, 'header_button', 'apollo13framework_header_button_css'); } add_filter( 'customize_render_partials_response', 'apollo13framework_header_button_partial_css' );
Upload File
Create Folder