有人可以告诉我,我做错了吗?我访问我的网站时收到的错误如下:
解析错误:语法错误,意外'<'在 第19行/home/content/52/9623852/html/index.php
这里是index.php的编码:
<?php
/**
* The main template file.
*/
get_header(); ?>
<div id="primary">
<div style="border: 2px solid #333;float: left;width: 875px;margin-top: 10px;margin-left: 15px; margin-bottom:10px;background: #ccc url(<?php bloginfo('template_url');?>/images/bgcontent.jpg) repeat-y;">
<div id="content">
<?php if ( have_posts() ) : ?>
<?php twentyeleven_content_nav( 'nav-above' ); ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php twentyeleven_content_nav( 'nav-below' ); ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<?php endif; ?>
</div><!-- #content -->
<?php get_sidebar(); ?>
</div>
</div><!-- #primary -->
<?php get_footer(); ?>
答案 0 :(得分:0)
解决问题的根本方法是使用标准的调试程序:
你正在用眼睛看问题,虽然这是第一道防线,但只是看一下这段代码是不够的(主要是因为代码库非常脏/有些没有纪律)。
让php解析器为你完成工作,删除可能有问题的块,直到解析器停止尖叫。