HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/bookcc/public_html/wp-content/themes/fatmoon/header-variants/vertical.php
<?php
global $apollo13framework_a13;

$background_type = $apollo13framework_a13->get_option( 'header_widgets_color' );
$variant         = $apollo13framework_a13->get_option( 'header_vertical_variant' );
$header_classes  = 'to-move vertical ' . $background_type . ' variant-'.$variant;
$menu_on         = $apollo13framework_a13->get_option( 'header_main_menu' ) === 'on';

$icons_no       = 0;
$header_tools   = apollo13framework_get_header_toolbar($icons_no);
if(!$icons_no){
    $header_classes .= ' no-tools';
}
else{
    $header_classes .= ' tools-icons-'.$icons_no; //number of icons
}
if($apollo13framework_a13->get_option( 'header_center_content' ) === 'on'){
    $header_classes .= ' centered';
}
?>
<header id="header" class="<?php echo esc_attr($header_classes); ?>"<?php apollo13framework_schema_args( 'header' ); ?>>
    <div class="head">
        <div class="logo-container"<?php apollo13framework_schema_args('logo'); ?>><?php apollo13framework_header_logo(); ?></div>

        <?php if($menu_on): ?>
        <nav id="access" class="navigation-bar"<?php apollo13framework_schema_args('navigation'); ?>>
            <?php apollo13framework_header_menu(); ?>
        </nav><!-- #access -->
        <?php endif; ?>

        <?php echo wp_kses_post( $header_tools );//escaped layout part ?>

        <?php echo apollo13framework_header_search(); ?>
    </div>
</header>