HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
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: /var/www/tana/wp-content/themes/tana/header.php
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title><?= get_the_title($post->ID) ?> | <?= get_bloginfo( 'name' ) ?></title>
  <link rel="icon" type="image/x-icon" href="<?= get_field( 'site_favicon', 'option' ) ?>"/>
  <link href="https://fonts.googleapis.com/css?family=Lato:300,400|Montserrat:400,500,600,700&amp;subset=latin-ext" rel="stylesheet">
  <link rel="stylesheet" href="<?= get_template_directory_uri(); ?>/assets/style/style.css">
  <?php wp_head(); ?>
  <script>
    var ajaxurl = '<?= admin_url( 'admin-ajax.php' ) ?>';
    var themeurl = '<?= get_template_directory_uri(); ?>';
  </script>

</head>

<?php
  $style = get_field( 'theme_style'  );

  if( $style == 'none' ) {
    $class = '';
  } elseif( $style == 'gray' ) {
    $class = 'theme-gray';
  } elseif( $style == 'gray-alternate' ) {
    $class = 'theme-gray-alternate';
  } elseif( $style == 'orange' ) {
    $class = 'theme-orange';
  }
?>

<body id="<?= get_the_ID(); ?>" <?php body_class( $class ); ?>>
  <div class="full-wrapper">
    <div class="content-wrapper <?= $class ?>">
      <nav class="navbar" id="navbar">
        <div class="container-fluid">
        <?php
          wp_nav_menu(array(
            'menu'            => 'main-menu',
            'menu_class'      => 'navbar-nav list list--unstyled',
            'container_class' => 'navbar-nav__container'
          ));
          ?>
        </div>
        <div class="menu-toggle" id="menuToggle">
          <div class="menu-toggle__lines">
            <div class="menu-toggle__line1"></div>
            <div class="menu-toggle__line2"></div>
            <div class="menu-toggle__line3"></div>
          </div>
        </div>
      </nav>