HEX
Server: LiteSpeed
System: Linux standart108 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: pplae2ji7 (11089)
PHP: 8.3.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/plasmak.com.tr/httpdocs/wp-content/themes/buliten-wp-full/buliten/404.php
<?php
$options = _WSH()->option();
    $text = '';
    $error_bg = buliten_set($options, '404_page_bg') ? buliten_set($options, '404_page_bg') : get_template_directory_uri().'/images/background/9.jpg';
    $banner_title = buliten_set($options, '404_header_title');
    $page_heading = buliten_set($options, 'page_heading_img') ? buliten_set($options, 'page_heading_img') : get_template_directory_uri().'/images/resource/error-image.png';
    $page_description = buliten_set($options, '404_page_tag_line');
    $page_text = buliten_set($options, '404_page_text');
    $allowed_tags = wp_kses_allowed_html('post');
    get_header();
?>

<!--Page Title-->
<section class="page-title" <?php if ($error_bg):?>style="background-image:url(<?php echo esc_url($error_bg)?>);"<?php endif;?>>
    <div class="auto-container">
        <h2>
            <?php
                if ($banner_title) {
                    echo wp_kses($banner_title, $allowed_tags);
                } else {
                    esc_html_e('404', 'buliten');
                }
            ?>
         </h2>

        <?php echo wp_kses(buliten_get_the_breadcrumb(), $allowed_tags); ?>

    </div>
</section>
<!--End Page Title-->

<!--Error Section-->
<section class="error-section">
    <div class="auto-container">
        <div class="inner-section">
            <div class="error-image">
                <img src="<?php echo esc_url($page_heading)?>" alt="<?php esc_attr_e('Awesome Image', 'buliten'); ?>" />
            </div>
            <h2>
                <?php if ($page_description) {
                echo wp_kses($page_description, $allowed_tags);
            } else {
                esc_html_e('Oops! That page can not be found', 'buliten');
            } ?>
            </h2>
            <div class="text">
                <?php if ($page_text) {
                echo wp_kses($page_text, $allowed_tags);
            } else {
                esc_html_e('Sorry, but the page you are looking for does not existing', 'buliten');
            } ?>
            </div>

            
            <a href="<?php echo esc_url(home_url('/')); ?>" class="go-back"><?php esc_html_e('Back to Home Page', 'buliten'); ?></a>

        </div>
    </div>
</section>
<!--End Error Section-->

<?php get_footer(); ?>