bir de dosyaın altındaki bu kodu silin

Alıntı
<?php
}
function get_remix_header() {
//Header
$rheader = get_option('remix-global-header');
if ($rheader) {
if (file_exists(TEMPLATEPATH . '/includes/header/' . $rheader . ".php")) {
include(TEMPLATEPATH . '/includes/header/' . $rheader . ".php");
} else {
include (TEMPLATEPATH . '/includes/header/header1.php');
}
} else {
include (TEMPLATEPATH . '/includes/header/header1.php');
}
}
function remix_add_scripts() {
wp_enqueue_script('jquery');
wp_enqueue_script('remix_faq', get_bloginfo('template_directory') . '/js/faq.js', array("jquery", ) , 1.0);
}
function mytheme_wp_head() { ?>
<link href="<?php bloginfo('template_directory'); ?>/style.php" rel="stylesheet" type="text/css" />
<?php }
add_action('wp_head', 'mytheme_wp_head');
add_action('admin_menu', 'mytheme_add_admin');
add_action('wp_print_scripts','remix_add_scripts') ;
//Remix Editor
include(TEMPLATEPATH . "/editor/remix_advanced_editor.php");
?>