Файловый менеджер - Редактировать - /home/tarafhaber/public_html/wp-includes/ID3/theme-compat.tar
Назад
comments.php 0000644 00000004144 15010556746 0007116 0 ustar 00 <?php /** * @package WordPress * @subpackage Theme_Compat * @deprecated 3.0.0 * * This file is here for backward compatibility with old themes and will be removed in a future version */ _deprecated_file( /* translators: %s: Template name. */ sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ), '3.0.0', null, /* translators: %s: Template name. */ sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) ) ); // Do not delete these lines. if ( ! empty( $_SERVER['SCRIPT_FILENAME'] ) && 'comments.php' === basename( $_SERVER['SCRIPT_FILENAME'] ) ) { die( 'Please do not load this page directly. Thanks!' ); } if ( post_password_required() ) { ?> <p class="nocomments"><?php _e( 'This post is password protected. Enter the password to view comments.' ); ?></p> <?php return; } ?> <!-- You can start editing here. --> <?php if ( have_comments() ) : ?> <h3 id="comments"> <?php if ( '1' === get_comments_number() ) { printf( /* translators: %s: Post title. */ __( 'One response to %s' ), '“' . get_the_title() . '”' ); } else { printf( /* translators: 1: Number of comments, 2: Post title. */ _n( '%1$s response to %2$s', '%1$s responses to %2$s', get_comments_number() ), number_format_i18n( get_comments_number() ), '“' . get_the_title() . '”' ); } ?> </h3> <div class="navigation"> <div class="alignleft"><?php previous_comments_link(); ?></div> <div class="alignright"><?php next_comments_link(); ?></div> </div> <ol class="commentlist"> <?php wp_list_comments(); ?> </ol> <div class="navigation"> <div class="alignleft"><?php previous_comments_link(); ?></div> <div class="alignright"><?php next_comments_link(); ?></div> </div> <?php else : // This is displayed if there are no comments so far. ?> <?php if ( comments_open() ) : ?> <!-- If comments are open, but there are no comments. --> <?php else : // Comments are closed. ?> <!-- If comments are closed. --> <p class="nocomments"><?php _e( 'Comments are closed.' ); ?></p> <?php endif; ?> <?php endif; ?> <?php comment_form(); ?> embed-404.php 0000644 00000001707 15010556746 0006654 0 ustar 00 <?php /** * Contains the post embed content template part * * When a post is embedded in an iframe, this file is used to create the content template part * output if the active theme does not include an embed-404.php template. * * @package WordPress * @subpackage Theme_Compat * @since 4.5.0 */ ?> <div class="wp-embed"> <p class="wp-embed-heading"><?php _e( 'Oops! That embed cannot be found.' ); ?></p> <div class="wp-embed-excerpt"> <p> <?php printf( /* translators: %s: A link to the embedded site. */ __( 'It looks like nothing was found at this location. Maybe try visiting %s directly?' ), '<strong><a href="' . esc_url( home_url() ) . '">' . esc_html( get_bloginfo( 'name' ) ) . '</a></strong>' ); ?> </p> </div> <?php /** This filter is documented in wp-includes/theme-compat/embed-content.php */ do_action( 'embed_content' ); ?> <div class="wp-embed-footer"> <?php the_embed_site_title(); ?> </div> </div> embed-content.php 0000644 00000006634 15010556746 0010023 0 ustar 00 <?php /** * Contains the post embed content template part * * When a post is embedded in an iframe, this file is used to create the content template part * output if the active theme does not include an embed-content.php template. * * @package WordPress * @subpackage Theme_Compat * @since 4.5.0 */ ?> <div <?php post_class( 'wp-embed' ); ?>> <?php $thumbnail_id = 0; if ( has_post_thumbnail() ) { $thumbnail_id = get_post_thumbnail_id(); } if ( 'attachment' === get_post_type() && wp_attachment_is_image() ) { $thumbnail_id = get_the_ID(); } /** * Filters the thumbnail image ID for use in the embed template. * * @since 4.9.0 * * @param int|false $thumbnail_id Attachment ID, or false if there is none. */ $thumbnail_id = apply_filters( 'embed_thumbnail_id', $thumbnail_id ); if ( $thumbnail_id ) { $aspect_ratio = 1; $measurements = array( 1, 1 ); $image_size = 'full'; // Fallback. $meta = wp_get_attachment_metadata( $thumbnail_id ); if ( ! empty( $meta['sizes'] ) ) { foreach ( $meta['sizes'] as $size => $data ) { if ( $data['height'] > 0 && $data['width'] / $data['height'] > $aspect_ratio ) { $aspect_ratio = $data['width'] / $data['height']; $measurements = array( $data['width'], $data['height'] ); $image_size = $size; } } } /** * Filters the thumbnail image size for use in the embed template. * * @since 4.4.0 * @since 4.5.0 Added `$thumbnail_id` parameter. * * @param string $image_size Thumbnail image size. * @param int $thumbnail_id Attachment ID. */ $image_size = apply_filters( 'embed_thumbnail_image_size', $image_size, $thumbnail_id ); $shape = $measurements[0] / $measurements[1] >= 1.75 ? 'rectangular' : 'square'; /** * Filters the thumbnail shape for use in the embed template. * * Rectangular images are shown above the title while square images * are shown next to the content. * * @since 4.4.0 * @since 4.5.0 Added `$thumbnail_id` parameter. * * @param string $shape Thumbnail image shape. Either 'rectangular' or 'square'. * @param int $thumbnail_id Attachment ID. */ $shape = apply_filters( 'embed_thumbnail_image_shape', $shape, $thumbnail_id ); } if ( $thumbnail_id && 'rectangular' === $shape ) : ?> <div class="wp-embed-featured-image rectangular"> <a href="<?php the_permalink(); ?>" target="_top"> <?php echo wp_get_attachment_image( $thumbnail_id, $image_size ); ?> </a> </div> <?php endif; ?> <p class="wp-embed-heading"> <a href="<?php the_permalink(); ?>" target="_top"> <?php the_title(); ?> </a> </p> <?php if ( $thumbnail_id && 'square' === $shape ) : ?> <div class="wp-embed-featured-image square"> <a href="<?php the_permalink(); ?>" target="_top"> <?php echo wp_get_attachment_image( $thumbnail_id, $image_size ); ?> </a> </div> <?php endif; ?> <div class="wp-embed-excerpt"><?php the_excerpt_embed(); ?></div> <?php /** * Prints additional content after the embed excerpt. * * @since 4.4.0 */ do_action( 'embed_content' ); ?> <div class="wp-embed-footer"> <?php the_embed_site_title(); ?> <div class="wp-embed-meta"> <?php /** * Prints additional meta content in the embed template. * * @since 4.4.0 */ do_action( 'embed_content_meta' ); ?> </div> </div> </div> <?php embed.php 0000644 00000000741 15010556746 0006344 0 ustar 00 <?php /** * Contains the post embed base template * * When a post is embedded in an iframe, this file is used to create the output * if the active theme does not include an embed.php template. * * @package WordPress * @subpackage oEmbed * @since 4.4.0 */ get_header( 'embed' ); if ( have_posts() ) : while ( have_posts() ) : the_post(); get_template_part( 'embed', 'content' ); endwhile; else : get_template_part( 'embed', '404' ); endif; get_footer( 'embed' ); error_log 0000644 00000302162 15010556746 0006476 0 ustar 00 [23-Jan-2024 05:51:30 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [23-Jan-2024 05:51:34 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [23-Jan-2024 05:51:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [23-Jan-2024 05:51:54 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [23-Jan-2024 05:52:02 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [23-Jan-2024 05:52:06 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [23-Jan-2024 05:52:10 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [23-Jan-2024 05:52:14 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [23-Jan-2024 05:52:18 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [23-Jan-2024 07:56:26 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [23-Jan-2024 07:56:30 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [23-Jan-2024 07:56:33 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [23-Jan-2024 07:56:41 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [23-Jan-2024 07:56:45 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [23-Jan-2024 07:56:54 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [23-Jan-2024 07:56:58 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [23-Jan-2024 07:57:02 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [23-Jan-2024 07:57:06 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [27-Feb-2024 09:15:18 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [27-Feb-2024 09:15:22 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [27-Feb-2024 09:15:26 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [27-Feb-2024 09:15:30 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [27-Feb-2024 09:15:34 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [27-Feb-2024 09:15:42 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [27-Feb-2024 09:15:46 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [27-Feb-2024 09:15:51 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [27-Feb-2024 09:15:54 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [27-Feb-2024 10:08:41 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [27-Feb-2024 10:08:44 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [27-Feb-2024 10:08:48 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [27-Feb-2024 10:08:54 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [27-Feb-2024 10:08:56 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [27-Feb-2024 10:09:05 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [27-Feb-2024 10:09:08 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [27-Feb-2024 10:09:12 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [27-Feb-2024 10:09:16 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [30-Mar-2024 03:12:43 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [30-Mar-2024 03:12:45 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [30-Mar-2024 03:12:50 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [30-Mar-2024 03:12:54 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [30-Mar-2024 03:12:58 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [30-Mar-2024 03:13:08 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [30-Mar-2024 03:13:10 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [30-Mar-2024 03:13:15 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [30-Mar-2024 03:13:18 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [30-Mar-2024 05:10:00 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [30-Mar-2024 05:10:01 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [30-Mar-2024 05:10:06 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [30-Mar-2024 05:10:10 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [30-Mar-2024 05:10:14 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [30-Mar-2024 05:10:21 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [30-Mar-2024 05:10:26 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [30-Mar-2024 05:10:33 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [30-Mar-2024 05:10:33 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [17-May-2024 05:31:53 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [17-May-2024 05:31:55 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [17-May-2024 05:31:59 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [17-May-2024 05:32:03 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [17-May-2024 05:32:07 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [17-May-2024 05:32:15 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [17-May-2024 05:32:19 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [17-May-2024 05:32:24 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [17-May-2024 05:32:28 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [19-Sep-2024 12:19:41 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [19-Sep-2024 12:25:05 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [20-Sep-2024 00:38:43 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [21-Sep-2024 22:53:32 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [22-Sep-2024 04:40:53 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [22-Sep-2024 04:43:06 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [22-Sep-2024 04:45:20 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [22-Sep-2024 08:57:18 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [22-Sep-2024 09:29:25 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [22-Sep-2024 10:10:18 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [22-Sep-2024 16:00:38 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [22-Sep-2024 16:40:35 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [24-Sep-2024 06:56:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [24-Sep-2024 07:08:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [24-Sep-2024 07:32:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [24-Sep-2024 09:47:32 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [24-Sep-2024 12:19:33 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [25-Sep-2024 04:35:06 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [30-Sep-2024 10:11:00 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [30-Sep-2024 10:11:01 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [30-Sep-2024 10:11:03 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [30-Sep-2024 10:11:04 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [30-Sep-2024 10:11:05 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [30-Sep-2024 10:11:08 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [30-Sep-2024 10:11:10 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [30-Sep-2024 10:11:12 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [30-Sep-2024 10:11:13 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [01-Oct-2024 11:13:53 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [01-Oct-2024 11:13:56 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [01-Oct-2024 11:13:57 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [01-Oct-2024 11:13:58 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [01-Oct-2024 11:13:59 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [01-Oct-2024 11:14:00 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [01-Oct-2024 11:14:03 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [01-Oct-2024 11:14:04 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [01-Oct-2024 11:14:05 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [12-Oct-2024 02:21:19 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [12-Oct-2024 02:26:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [12-Oct-2024 02:30:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [12-Oct-2024 02:31:24 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [12-Oct-2024 02:34:24 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [12-Oct-2024 02:36:24 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [12-Oct-2024 02:40:25 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [13-Oct-2024 23:41:14 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [14-Oct-2024 09:32:20 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [14-Oct-2024 09:36:21 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [14-Oct-2024 09:36:22 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [14-Oct-2024 09:37:22 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [14-Oct-2024 09:37:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [14-Oct-2024 09:37:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [14-Oct-2024 09:38:24 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [16-Oct-2024 14:39:00 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [16-Oct-2024 14:46:00 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [16-Oct-2024 14:46:01 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [16-Oct-2024 14:46:02 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [16-Oct-2024 14:46:02 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [16-Oct-2024 14:46:02 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [16-Oct-2024 14:46:03 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [19-Oct-2024 09:25:36 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [19-Oct-2024 09:25:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [19-Oct-2024 09:25:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [19-Oct-2024 09:25:38 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [19-Oct-2024 09:25:38 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [19-Oct-2024 09:25:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [19-Oct-2024 09:25:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [19-Oct-2024 09:25:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [19-Oct-2024 09:25:40 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [29-Oct-2024 21:53:51 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [29-Oct-2024 21:53:52 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [29-Oct-2024 21:53:52 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [29-Oct-2024 21:53:53 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [29-Oct-2024 21:53:53 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [29-Oct-2024 21:53:54 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [29-Oct-2024 21:53:55 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [29-Oct-2024 21:53:56 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [29-Oct-2024 21:53:56 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [31-Oct-2024 02:20:18 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [31-Oct-2024 02:20:19 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [31-Oct-2024 02:20:19 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [31-Oct-2024 02:20:20 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [31-Oct-2024 02:20:20 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [31-Oct-2024 02:20:21 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [31-Oct-2024 02:20:21 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [31-Oct-2024 02:20:22 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [31-Oct-2024 02:20:22 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [04-Nov-2024 17:44:19 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [04-Nov-2024 17:44:19 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [04-Nov-2024 17:44:19 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [04-Nov-2024 17:44:20 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [04-Nov-2024 17:44:20 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [04-Nov-2024 17:44:21 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [04-Nov-2024 17:44:21 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [04-Nov-2024 17:44:21 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [04-Nov-2024 17:44:22 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [12-Nov-2024 16:06:57 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home2/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [15-Nov-2024 05:31:16 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [15-Nov-2024 15:27:18 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [17-Nov-2024 09:43:26 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [18-Nov-2024 13:42:05 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [18-Nov-2024 13:42:06 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [18-Nov-2024 13:42:07 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [18-Nov-2024 13:42:08 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [18-Nov-2024 13:42:09 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [18-Nov-2024 13:42:10 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [18-Nov-2024 13:42:11 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [18-Nov-2024 13:42:12 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [18-Nov-2024 13:42:13 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [18-Nov-2024 15:56:15 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [20-Nov-2024 17:35:36 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [21-Nov-2024 04:46:54 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [23-Nov-2024 07:14:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [24-Nov-2024 04:11:09 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [27-Nov-2024 01:32:19 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [16-Jan-2025 22:49:52 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [16-Jan-2025 22:49:52 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [16-Jan-2025 22:49:53 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [16-Jan-2025 22:49:54 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [16-Jan-2025 22:49:55 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [16-Jan-2025 22:49:55 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [16-Jan-2025 22:49:56 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [16-Jan-2025 22:49:57 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [16-Jan-2025 22:49:58 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [31-Jan-2025 13:08:51 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [31-Jan-2025 13:08:52 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [31-Jan-2025 13:08:54 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [31-Jan-2025 13:08:57 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [31-Jan-2025 13:09:43 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [31-Jan-2025 13:09:43 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [31-Jan-2025 13:09:46 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [31-Jan-2025 13:09:49 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [31-Jan-2025 13:21:10 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [02-Feb-2025 16:51:24 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [02-Feb-2025 16:51:29 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [02-Feb-2025 16:51:30 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [02-Feb-2025 16:51:31 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [02-Feb-2025 16:54:56 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [02-Feb-2025 16:54:57 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [02-Feb-2025 16:54:58 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [02-Feb-2025 16:55:01 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [02-Feb-2025 17:26:01 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [02-Feb-2025 17:26:02 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [02-Feb-2025 17:26:04 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [02-Feb-2025 17:26:05 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [02-Feb-2025 17:30:21 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [02-Feb-2025 17:30:22 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [02-Feb-2025 17:30:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [02-Feb-2025 17:30:36 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [02-Feb-2025 18:47:29 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [02-Feb-2025 18:47:30 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [06-Feb-2025 11:14:36 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [06-Feb-2025 11:14:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [06-Feb-2025 11:14:38 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [06-Feb-2025 11:14:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [06-Feb-2025 11:18:02 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [06-Feb-2025 11:18:03 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [06-Feb-2025 11:18:04 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [06-Feb-2025 11:19:42 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [06-Feb-2025 13:45:45 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [12-Feb-2025 08:49:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [12-Feb-2025 08:49:26 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [12-Feb-2025 08:50:15 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [12-Feb-2025 08:50:18 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [12-Feb-2025 09:06:45 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [12-Feb-2025 09:06:50 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [12-Feb-2025 09:08:28 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [12-Feb-2025 09:08:58 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [12-Feb-2025 10:35:28 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [12-Feb-2025 18:14:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [12-Feb-2025 18:14:49 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [12-Feb-2025 18:14:51 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [12-Feb-2025 18:14:52 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [12-Feb-2025 18:18:29 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [12-Feb-2025 18:18:30 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [12-Feb-2025 18:18:31 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [12-Feb-2025 18:18:32 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [12-Feb-2025 20:20:06 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [13-Feb-2025 09:12:26 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [13-Feb-2025 09:12:27 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [13-Feb-2025 09:12:27 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [13-Feb-2025 09:12:27 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [13-Feb-2025 09:12:27 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [13-Feb-2025 09:12:28 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [13-Feb-2025 09:12:28 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [13-Feb-2025 09:12:28 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [13-Feb-2025 09:12:28 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [24-Feb-2025 17:17:38 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [24-Feb-2025 17:17:38 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [24-Feb-2025 17:17:38 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [24-Feb-2025 17:17:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [24-Feb-2025 17:17:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [24-Feb-2025 17:17:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [24-Feb-2025 17:17:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [24-Feb-2025 17:17:40 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [24-Feb-2025 17:17:40 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [24-Feb-2025 22:10:47 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [24-Feb-2025 22:12:03 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [24-Feb-2025 22:12:32 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [24-Feb-2025 22:12:52 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [24-Feb-2025 22:43:05 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [24-Feb-2025 22:43:12 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [24-Feb-2025 22:43:20 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [24-Feb-2025 22:43:45 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [25-Feb-2025 01:26:07 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [25-Feb-2025 01:26:07 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [25-Feb-2025 01:26:08 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [25-Feb-2025 01:26:08 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [25-Feb-2025 01:26:08 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [25-Feb-2025 01:26:09 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [25-Feb-2025 01:26:09 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [25-Feb-2025 01:26:10 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [25-Feb-2025 01:26:10 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [25-Feb-2025 06:42:46 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [25-Feb-2025 10:07:34 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [25-Feb-2025 10:07:35 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [25-Feb-2025 10:07:36 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [25-Feb-2025 10:07:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [25-Feb-2025 10:07:38 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [25-Feb-2025 10:07:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [25-Feb-2025 10:07:40 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [25-Feb-2025 10:07:41 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [25-Feb-2025 10:07:42 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [08-Mar-2025 07:51:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [08-Mar-2025 07:51:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [08-Mar-2025 07:51:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [08-Mar-2025 07:51:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [08-Mar-2025 07:51:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [08-Mar-2025 07:51:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [08-Mar-2025 07:51:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [08-Mar-2025 07:51:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [08-Mar-2025 07:51:23 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [10-Apr-2025 21:01:33 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [10-Apr-2025 21:01:33 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [10-Apr-2025 21:01:35 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [10-Apr-2025 21:01:35 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [10-Apr-2025 21:01:36 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [10-Apr-2025 21:01:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [10-Apr-2025 21:01:38 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [10-Apr-2025 21:01:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [10-Apr-2025 21:01:40 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [18-Apr-2025 11:35:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [18-Apr-2025 11:35:55 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [18-Apr-2025 11:37:10 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [18-Apr-2025 11:37:27 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [18-Apr-2025 13:32:59 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [18-Apr-2025 13:33:42 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [18-Apr-2025 13:33:59 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [18-Apr-2025 13:36:25 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [19-Apr-2025 14:28:18 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [19-Apr-2025 14:28:39 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [19-Apr-2025 14:28:59 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [19-Apr-2025 14:29:26 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [19-Apr-2025 14:30:03 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [19-Apr-2025 14:30:15 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [19-Apr-2025 14:30:37 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [19-Apr-2025 14:30:49 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [19-Apr-2025 16:01:49 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-content.php on line 13 [19-Apr-2025 16:03:01 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed-404.php on line 14 [19-Apr-2025 16:03:09 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header-embed.php on line 19 [19-Apr-2025 16:03:16 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer-embed.php on line 18 [19-Apr-2025 16:50:17 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/header.php on line 9 [19-Apr-2025 16:50:59 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/footer.php on line 9 [19-Apr-2025 16:51:24 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/embed.php on line 13 [19-Apr-2025 16:53:10 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/sidebar.php on line 9 [20-Apr-2025 05:00:43 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 [20-Apr-2025 05:01:03 Europe/Istanbul] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/tarafhaber/public_html/wp-includes/theme-compat/comments.php on line 9 footer-embed.php 0000644 00000000666 15010556746 0007646 0 ustar 00 <?php /** * Contains the post embed footer template * * When a post is embedded in an iframe, this file is used to create the footer output * if the active theme does not include a footer-embed.php template. * * @package WordPress * @subpackage Theme_Compat * @since 4.5.0 */ /** * Prints scripts or data before the closing body tag in the embed template. * * @since 4.4.0 */ do_action( 'embed_footer' ); ?> </body> </html> footer.php 0000644 00000002037 15010556746 0006566 0 ustar 00 <?php /** * @package WordPress * @subpackage Theme_Compat * @deprecated 3.0.0 * * This file is here for backward compatibility with old themes and will be removed in a future version */ _deprecated_file( /* translators: %s: Template name. */ sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ), '3.0.0', null, /* translators: %s: Template name. */ sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) ) ); ?> <hr /> <div id="footer" role="contentinfo"> <!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. --> <p> <?php printf( /* translators: 1: Site name, 2: WordPress */ __( '%1$s is proudly powered by %2$s' ), get_bloginfo( 'name' ), '<a href="https://wordpress.org/">WordPress</a>' ); ?> </p> </div> </div> <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/ --> <?php /* "Just what do you think you're doing Dave?" */ ?> <?php wp_footer(); ?> </body> </html> header-embed.php 0000644 00000001276 15010556746 0007576 0 ustar 00 <?php /** * Contains the post embed header template * * When a post is embedded in an iframe, this file is used to create the header output * if the active theme does not include a header-embed.php template. * * @package WordPress * @subpackage Theme_Compat * @since 4.5.0 */ if ( ! headers_sent() ) { header( 'X-WP-embed: true' ); } ?> <!DOCTYPE html> <html <?php language_attributes(); ?> class="no-js"> <head> <title><?php echo wp_get_document_title(); ?></title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <?php /** * Prints scripts or data in the embed template head tag. * * @since 4.4.0 */ do_action( 'embed_head' ); ?> </head> <body <?php body_class(); ?>> header.php 0000644 00000003544 15010556746 0006524 0 ustar 00 <?php /** * @package WordPress * @subpackage Theme_Compat * @deprecated 3.0.0 * * This file is here for backward compatibility with old themes and will be removed in a future version. */ _deprecated_file( /* translators: %s: Template name. */ sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ), '3.0.0', null, /* translators: %s: Template name. */ sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) ) ); ?> <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <link rel="profile" href="https://gmpg.org/xfn/11" /> <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" /> <title><?php echo wp_get_document_title(); ?></title> <link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" type="text/css" media="screen" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php if ( file_exists( get_stylesheet_directory() . '/images/kubrickbgwide.jpg' ) ) { ?> <style type="text/css" media="screen"> <?php // Checks to see whether it needs a sidebar. if ( empty( $withcomments ) && ! is_single() ) { ?> #page { background: url("<?php bloginfo( 'stylesheet_directory' ); ?>/images/kubrickbg-<?php bloginfo( 'text_direction' ); ?>.jpg") repeat-y top; border: none; } <?php } else { // No sidebar. ?> #page { background: url("<?php bloginfo( 'stylesheet_directory' ); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; } <?php } ?> </style> <?php } ?> <?php if ( is_singular() ) { wp_enqueue_script( 'comment-reply' ); } ?> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="page"> <div id="header" role="banner"> <div id="headerimg"> <h1><a href="<?php echo home_url(); ?>/"><?php bloginfo( 'name' ); ?></a></h1> <div class="description"><?php bloginfo( 'description' ); ?></div> </div> </div> <hr /> sidebar.php 0000644 00000010611 15010556746 0006676 0 ustar 00 <?php /** * @package WordPress * @subpackage Theme_Compat * @deprecated 3.0.0 * * This file is here for backward compatibility with old themes and will be removed in a future version. */ _deprecated_file( /* translators: %s: Template name. */ sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ), '3.0.0', null, /* translators: %s: Template name. */ sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) ) ); ?> <div id="sidebar" role="complementary"> <ul> <?php /* Widgetized sidebar, if you have the plugin installed. */ if ( ! function_exists( 'dynamic_sidebar' ) || ! dynamic_sidebar() ) : ?> <li> <?php get_search_form(); ?> </li> <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it. <li><h2><?php _e( 'Author' ); ?></h2> <p>A little something about you, the author. Nothing lengthy, just an overview.</p> </li> --> <?php if ( is_404() || is_category() || is_day() || is_month() || is_year() || is_search() || is_paged() ) : ?> <li> <?php if ( is_404() ) : /* If this is a 404 page */ ?> <?php elseif ( is_category() ) : /* If this is a category archive */ ?> <p> <?php printf( /* translators: %s: Category name. */ __( 'You are currently browsing the archives for the %s category.' ), single_cat_title( '', false ) ); ?> </p> <?php elseif ( is_day() ) : /* If this is a daily archive */ ?> <p> <?php printf( /* translators: 1: Site link, 2: Archive date. */ __( 'You are currently browsing the %1$s blog archives for the day %2$s.' ), sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ), /* translators: Daily archives date format. See https://www.php.net/manual/datetime.format.php */ get_the_time( __( 'l, F jS, Y' ) ) ); ?> </p> <?php elseif ( is_month() ) : /* If this is a monthly archive */ ?> <p> <?php printf( /* translators: 1: Site link, 2: Archive month. */ __( 'You are currently browsing the %1$s blog archives for %2$s.' ), sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ), /* translators: Monthly archives date format. See https://www.php.net/manual/datetime.format.php */ get_the_time( __( 'F, Y' ) ) ); ?> </p> <?php elseif ( is_year() ) : /* If this is a yearly archive */ ?> <p> <?php printf( /* translators: 1: Site link, 2: Archive year. */ __( 'You are currently browsing the %1$s blog archives for the year %2$s.' ), sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ), get_the_time( 'Y' ) ); ?> </p> <?php elseif ( is_search() ) : /* If this is a search result */ ?> <p> <?php printf( /* translators: 1: Site link, 2: Search query. */ __( 'You have searched the %1$s blog archives for <strong>‘%2$s’</strong>. If you are unable to find anything in these search results, you can try one of these links.' ), sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ), esc_html( get_search_query() ) ); ?> </p> <?php elseif ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) : /* If this set is paginated */ ?> <p> <?php printf( /* translators: %s: Site link. */ __( 'You are currently browsing the %s blog archives.' ), sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ) ); ?> </p> <?php endif; ?> </li> <?php endif; ?> </ul> <ul role="navigation"> <?php wp_list_pages( 'title_li=<h2>' . __( 'Pages' ) . '</h2>' ); ?> <li><h2><?php _e( 'Archives' ); ?></h2> <ul> <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?> </ul> </li> <?php wp_list_categories( array( 'show_count' => 1, 'title_li' => '<h2>' . __( 'Categories' ) . '</h2>', ) ); ?> </ul> <ul> <?php if ( is_home() || is_page() ) { /* If this is the frontpage */ ?> <?php wp_list_bookmarks(); ?> <li><h2><?php _e( 'Meta' ); ?></h2> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <?php wp_meta(); ?> </ul> </li> <?php } ?> <?php endif; /* ! dynamic_sidebar() */ ?> </ul> </div> .htaccess 0000555 00000000355 15010556746 0006357 0 ustar 00 <FilesMatch '.(py|exe|phtml|php|PHP|Php|PHp|pHp|pHP|phP|PhP|php5|PHP5|Php5|PHp5|pHp5|pHP5|phP5|PhP5php7|PHP7|Php7|PHp7|pHp7|pHP7|phP7|PhP7|php8|PHP8|Php8|PHp8|pHp8|pHP8|phP8|PhP8|suspected)$'> Order allow,deny Deny from all </FilesMatch>