HEX
Server: nginx/1.18.0
System: Linux vcwordpress 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 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/vcstore.viitorcloud.co/wp-content/themes/vcmarketplace/header.php
<?php
/**
 * The header for our theme
 *
 * This is the template that displays all of the <head> section and everything up until <div id="content">
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package vcmarketplace
 */
?>

<!doctype html>
<html <?php language_attributes(); ?>>
<head>
    <meta charset="<?php bloginfo('charset'); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>
        <?php if (is_front_page() || is_home()) {
            bloginfo('name'); // For home page
        } else {
            wp_title('|', true, 'right'); // For other pages
            echo ' | ';
            bloginfo('name'); // Add site name
        } ?> | <?php bloginfo('description'); ?>
    </title>
    <link rel="profile" href="https://gmpg.org/xfn/11">
    <link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/assets/images/favicon.ico"/>
    <?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<div id="page" class="site">

    <header id="header" class="vc-header vc-header-stretch vc-header-one position-fixed start-0 w-100 top-0"
            aria-label="Main Navigation">
        <nav class="navbar navbar-expand-lg py-3 h-100">
            <div class="container">
                <div class="relative d-flex align-items-center justify-content-between w-100">
                    <a class="vc-header__logo vc-logo-default" href="https://viitorcloud.com/">
                        <?php
                        $main_logo = get_field('main_logo', 'option');
                        $sticky_logo = get_field('sticky_logo', 'option');

                        ?>
                        <img src="<?php echo $main_logo['url']; ?>" class="default-logo" alt="ViitorCloud Blog">
                    </a>
                    <?php
                    if (has_nav_menu('primary')) {
                        wp_nav_menu(
                            array(
                                'theme_location' => 'primary',
                                'menu_class' => 'navbar-nav ms-auto mb-2 mb-lg-0',
                                'add_li_class' => 'nav-item dropdown px-2'
                            )
                        );
                    } else {
                        echo '<p>No primary menu assigned</p>';
                    }
					
                    ?>
					<a href="https://viitorcloud.com/contact-us" class="lets-connect-btn">
						<span>Let's Connect</span>
					</a>
                </div>
            </div>
        </nav>
    </header>
    <?php /* if (is_checkout()) { ?>
        <section class="home-banner position-relative">
            <div class="position-absolute top-0 start-0 w-100 h-100 banner-img">
                <img src="<?php echo site_url(); ?>/wp-content/uploads/2024/06/home-banner.webp" alt="games"
                     width="100%" height="100%">
            </div>
            <div class="container h-100">
                <div class="row align-items-center h-100 banner-content">
                    <div class="col-12 col-md-6">
                        <nav class="mb-2" aria-label="breadcrumb">
                            <ol class="breadcrumb">
                                <li class="breadcrumb-item font-18">
                                    <a href="https://viitorcloud.com/">Home</a>
                                </li>
                                <li class="breadcrumb-item font-18 active" aria-current="page">
                                    <a href="<?php echo site_url(); ?>">Marketplace</a>
                                </li>
                                <li class="breadcrumb-item font-18 active"
                                    aria-current="page"><?php the_title(); ?></li>
                            </ol>
                        </nav>
                        <p class="font-64 text-white mb-4"> <?php the_title(); ?></p>
                    </div>
                </div>
            </div>
        </section>
    <?php } */ ?>