| Server IP : 172.67.153.42 / Your IP : 216.73.217.138 Web Server : Apache System : Linux vps-850873.bgcolombia.com 3.10.0-1160.144.1.el7.tuxcare.els5.x86_64 #1 SMP Wed May 13 12:31:54 UTC 2026 x86_64 User : melizav ( 1018) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/melizav/.trash/oceanwp/partials/header/style/ |
Upload File : |
<?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';
}
if ( 'sidebar' == get_theme_mod( 'ocean_mobile_menu_style', 'sidebar' ) ) {
$classes[] = 'mobile-sidebar-menu-style';
}
// 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 Elementor
if ( OCEANWP_ELEMENTOR_ACTIVE && $elementor ) {
OceanWP_Elementor::get_vertical_header_content();
}
// If Beaver Builder
else if ( OCEANWP_BEAVER_BUILDER_ACTIVE && ! empty( $template ) ) {
echo do_shortcode( '[fl_builder_insert_layout id="' . $template . '"]' );
}
// Else
else {
// 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 Elementor
if ( OCEANWP_ELEMENTOR_ACTIVE && $bottom_elementor ) {
OceanWP_Elementor::get_vertical_header_bottom_content();
}
// If Beaver Builder
else if ( OCEANWP_BEAVER_BUILDER_ACTIVE && ! empty( $bottom_template ) ) {
echo do_shortcode( '[fl_builder_insert_layout id="' . $bottom_template . '"]' );
}
// Else
else {
// Display bottom 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' ); ?>