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 ); ?>