2015-06-20 83 views
1

我試圖關注this video tutorial(在YouTube上)。開發Wordpress主題時出現奇怪的錯誤

但是,我收到這個我無法理解的奇怪的錯誤。

我已經包含的圖像顯示錯誤:

image-of-error

我檢查了我的代碼100倍,並已與教程代碼進行了比較,我認爲錯誤是index.php

代碼PHP:

<!doctype HTML> 
<html> 
    <head> 
     <meta charset="utf-8"></meta> 
     <title><?php bloginfo('title')?></title> 
     <link rel="stylesheet" href="<?php bloginfo('stylesheet_url')?>" 
       <?php wp_head()?> 
     </head> 
     <body> 

     <header> 
      <h1><?php bloginfo('name')?></h1> 
     </header> 


    <div id="container"> 

的index.php

<?php get_header()?> 
<div> 
    <?php while (have_posts()):the_post()?> 
    <h2><?php the_title()?></h2> 
    <?php the_content(__('contie_reading'));?> 
    <?php endwhile;?> 
</div> 

<?php get_footer()?> 
<?php get_sidebar()?> 

FOOTER.PHP

</div> 

<footer> 
    <?=date('y')?> Copyright Never 
</footer> 

</body> 
</html> 

你知道在哪裏這是否重要?我搜索解決,不幸的是我沒有找到。

+0

多個問題,那有些JavaScript代碼片段沒有正確包含。在wp_head中查找,因爲其中包含javascript。 – peoples

回答

2

您的header.php文件中有一個損壞的鏈接標記。

更改此:

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url')?>" 

要:

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url')?>"> 

雖然這樣可以解決問題的手,我勸你找一個不同的教程。

有與你採取諸如包括樣式表頭部分,而不是進行排隊它們,使用PHP短標籤,放置在側邊欄頁腳後,這似乎是辦法,等

+0

非常感謝! – cristi