我不能为我的生活弄清楚这个错误是什么,我说这很简单,如果有的话,我道歉!但我真的是把我的头发拉出来。
<?php include_once("analyticstracking.php") ?>
<div id="loop" class="list clear" class="news-archive">
<ul>
<?php $post_org = $post; ?>
<?php query_posts( 'cat=-13,-10,-1,-22&posts_per_page=10&paged='.$paged' ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<li>
<div <?php post_class('post clear'); ?> id="news-archive-wrapper" class="news-archive-wrapper" >
<div class="news-archive-date"><p><?php the_time('M jS') ?></p></div>
<div class="news-archive-content"><a href="<?php the_permalink(); ?>"><p>
<?php
$excerpt = get_the_title();
echo string_limit_words($excerpt,15);
?>...</p></a>
</div>
</div>
</li>
</ul>
</div>
<?php endif; ?>
答案 0 :(得分:0)
在第7行(摘录中),您正在添加&#39;太多了
<?php query_posts( 'cat=-13,-10,-1,-22&posts_per_page=10&paged='.$paged ); ?>