2013-03-18 83 views
0

我已經在WordPress的(工作,工作室,CTHM​​ +)的後端由三個頁面,但他們似乎並沒有出現在網站的前端:父頁面不顯示在WordPress站點

http://www.cthm.co.uk/work/

header.php文件已被編輯,但我不確定是否缺少重要的東西。

<?php 
/** 
* The Header for our theme. 
* 
* Displays all of the <head> section and everything up till <div id="main"> 
* 
* @package WordPress 
* @subpackage Twenty_Twelve 
* @since Twenty Twelve 1.0 
*/ 
?><!DOCTYPE html> 
<!--[if IE 7]> 
<html class="ie ie7" <?php language_attributes(); ?>> 
<![endif]--> 
<!--[if IE 8]> 
<html class="ie ie8" <?php language_attributes(); ?>> 
<![endif]--> 
<!--[if !(IE 7) | !(IE 8) ]><!--> 
<html <?php language_attributes(); ?>> 
<!--<![endif]--> 
<head> 
<meta charset="<?php bloginfo('charset'); ?>" /> 
<title><?php wp_title('|', true, 'right'); ?></title> 
<link rel="profile" href="http://gmpg.org/xfn/11" /> 
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> 
<?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?> 
<!--[if lt IE 9]> 
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script> 
<![endif]--> 
<?php wp_head(); ?> 

    <script type="text/javascript" src="http://www.cthm.co.uk/wp-content/themes/child/scripts/jquery-1.3.2.min.js"></script> 
    <script type="text/javascript" src="http://www.cthm.co.uk/wp-content/themes/child/scripts/jquery.easing.1.3.js"></script> 
    <script type="text/javascript" src="http://www.cthm.co.uk/wp-content/themes/child/scripts/jquery.coda-slider-2.0.js"></script> 

    <script type="text/javascript"> 
     $().ready(function() { 
      $(".slider1").codaSlider({dynamicArrows: false, dynamicTabs: false});   
      $(".slider1 .coda-nav-right-wrapper").mouseover(function(){ $(".nav1").css("display", "block"); });  
      $(".slider1 .coda-nav-right-wrapper").mouseout(function(){ $(".nav1").css("display", "none"); }); 
      $("#coda-nav-right-1 > a > .coda-nav-right-wrapper") 
     }); 
    </script> 
</head> 

    <body> 

    <div id="header"> 

     <h1> 
      <a href="http://www.cthm.co.uk/work"> 
       <img src="http://www.cthm.co.uk/wp-content/uploads/2013/02/logo2.png" alt="CTHM Logo" id="logo" width="140" height="44" /> 
      </a> 

<div id="contact-details"> 
26 Queen Anne Road, <br /> 
London, E9 7AH<br /> 
<a href="mailto:[email protected]">[email protected]</a> 
</div> 

     </h1> 

    </div> 

    <div id="content"> 
+0

它看起來像你的硬編碼您的網站,而不是頭,請發佈page.php或single.php ..你也有一個JavaScript錯誤在您的網站,因爲你包裝了你的Google Analytics代碼裏面'

'這個標籤'

相關問題