0

我已经调试了我的索引文件并过滤掉了我的代码。事实证明,如果我使用以下代码,该站点会返回“意外的文件结尾”错误。如果我删除它,该站点将显示没有错误。所以我不确定我是否遗漏了任何语法代码或者是否有错字。

 <?php

 // The Query
 query_posts( 'cat=9614&posts_per_page=5&tag=review' );

 // The Loop
 while ( have_posts() ) : the_post();
 ?>
 <li>
 <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
 </li>
 <?
 endwhile;

 // Reset Query
 wp_reset_query();

 ?>
4

1 回答 1

6

使用<?php代替<?

<?php

 // The Query
 query_posts( 'cat=9614&posts_per_page=5&tag=review' );

 // The Loop
 while ( have_posts() ) : the_post();
 ?>
 <li>
 <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
 </li>
 <?php // error is here
 endwhile;

 // Reset Query
 wp_reset_query();

 ?>
于 2013-02-08T04:22:27.687 回答