我尝试关注this video tutorial(在YouTube上)。
但是我收到了这个非常奇怪的错误,我无法理解。
我已经包含了显示错误的图片:
我已经检查了我的代码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 :(得分:2)
header.php文件中的链接标记已损坏。
改变这个:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url')?>"
要:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url')?>">
虽然这可以解决手头的问题,但我建议你找一个不同的教程。
您采用的方法存在多个问题,例如在头部包含样式表而不是将它们排入队列,使用PHP短标记,将侧边栏放在页脚之后等等。