1
我試圖關注this video tutorial(在YouTube上)。開發Wordpress主題時出現奇怪的錯誤
但是,我收到這個我無法理解的奇怪的錯誤。
我已經包含的圖像顯示錯誤:
我檢查了我的代碼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>
你知道在哪裏這是否重要?我搜索解決,不幸的是我沒有找到。
多個問題,那有些JavaScript代碼片段沒有正確包含。在wp_head中查找,因爲其中包含javascript。 – peoples