index of
/
home
/
thefkyzp
/
public_html
/
wp-content
/
themes
/
oceanwp
/
partials
/
header
/
style
/
File: /home/thefkyzp/public_html/wp-content/themes/oceanwp/partials/header/style/vertical-header.php
<?php /** * Vertical Header Style * * @package OceanWP WordPress theme */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } // Get template. $template = get_theme_mod( 'ocean_vertical_header_template' ); // Check if template is created with Elementor. $elementor = get_post_meta( $template, '_elementor_edit_mode', true ); // Get template content. if ( ! empty( $template ) ) { $content = get_post( $template ); if ( $content && ! is_wp_error( $content ) ) { $get_content = $content->post_content; } } // Get bottom template. $bottom_template = get_theme_mod( 'ocean_vertical_header_bottom_template' ); // Check if template is created with Elementor. $bottom_elementor = get_post_meta( $bottom_template, '_elementor_edit_mode', true ); // Get bottom template content. if ( ! empty( $bottom_template ) ) { $bottom_content = get_post( $bottom_template ); if ( $bottom_content && ! is_wp_error( $bottom_content ) ) { $get_bottom_content = $bottom_content->post_content; } } // Get classes. $classes = array( 'clr' ); // If template. if ( ! empty( $template ) ) { $classes[] = 'has-template'; } // Add container class. if ( true !== get_theme_mod( 'ocean_header_full_width', false ) ) { $classes[] = 'container'; } // Turn classes into space seperated string. $classes = implode( ' ', $classes ); ?> <?php do_action( 'ocean_before_header_inner' ); ?> <div id="site-header-inner" class="<?php echo esc_attr( $classes ); ?>"> <?php get_template_part( 'partials/header/logo' ); ?> <?php // If template. if ( ! empty( $template ) ) { if ( OCEANWP_ELEMENTOR_ACTIVE && $elementor ) { // If Elementor. OceanWP_Elementor::get_vertical_header_content(); } elseif ( OCEANWP_BEAVER_BUILDER_ACTIVE && ! empty( $template ) ) { // If Beaver Builder. echo do_shortcode( '[fl_builder_insert_layout id="' . $template . '"]' ); } else if ( class_exists( 'SiteOrigin_Panels' ) && get_post_meta( $template, 'panels_data', true ) ) { echo SiteOrigin_Panels::renderer()->render( $template ); } else { // If Gutenberg. if ( ocean_is_block_template( $template ) ) { $get_content = apply_filters( 'oceanwp_vertical_header_content', do_blocks( $get_content ) ); } // Display template content. echo do_shortcode( $get_content ); } } else { ?> <?php get_template_part( 'partials/header/nav' ); ?> <?php // Search form. if ( true === get_theme_mod( 'ocean_vertical_header_search_form', true ) ) { get_template_part( 'partials/header/style/vertical-header-search' ); } ?> <?php // Social menu. if ( true === get_theme_mod( 'ocean_menu_social', false ) ) { get_template_part( 'partials/header/social' ); } ?> <?php // If bottom template. if ( ! empty( $bottom_template ) ) { if ( OCEANWP_ELEMENTOR_ACTIVE && $bottom_elementor ) { // If Elementor. OceanWP_Elementor::get_vertical_header_bottom_content(); } else if ( OCEANWP_BEAVER_BUILDER_ACTIVE && ! empty( $bottom_template ) ) { // If Beaver Builder. echo do_shortcode( '[fl_builder_insert_layout id="' . $bottom_template . '"]' ); } else if ( class_exists( 'SiteOrigin_Panels' ) && get_post_meta( $bottom_template, 'panels_data', true ) ) { echo SiteOrigin_Panels::renderer()->render( $bottom_template ); } else { // If Gutenberg. if ( ocean_is_block_template( $bottom_template ) ) { $get_bottom_content = apply_filters( 'oceanwp_vertical_header_bottom_content', do_blocks( $get_bottom_content ) ); } // Display template content. echo do_shortcode( $get_bottom_content ); } } ?> <?php } ?> <?php get_template_part( 'partials/mobile/mobile-icon' ); ?> <?php get_template_part( 'partials/header/style/vertical-header-toggle' ); ?> </div> <?php get_template_part( 'partials/mobile/mobile-dropdown' ); ?> <?php do_action( 'ocean_after_header_inner' ); ?>