请问如何在首页显示两篇全文或者摘要,下面只显示标题?
Re: 请问如何在首页显示两篇全文或者摘要,下面只显示标题?
代码: 全选
<?php $abc=2;
while($this->next()): ?>
<div class="post">
<h2 class="entry_title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h2>
<?php if($abc!=0){?>
<p class="entry_data">
<span><?php _e('作者:'); ?><?php $this->author(); ?></span>
<span><?php _e('发布时间:'); ?><?php $this->date('F j, Y'); ?></span>
<span><?php _e('分类:'); ?><?php $this->category(','); ?></span>
<a href="<?php $this->permalink() ?>#comments"><?php $this->commentsNum('No Comments', '1 Comment', '%d Comments'); ?></a>
</p>
<?php $this->content(); ?>
<?php
$abc=$abc-1;
}
?>
</div>
<?php endwhile; ?>
Re: 请问如何在首页显示两篇全文或者摘要,下面只显示标题?
SoAmz,如何判断是首页呢? 发现分页的时候 第二页也是显示两篇全文。
Re: 请问如何在首页显示两篇全文或者摘要,下面只显示标题?
while($this->is(index)): ?>
Re: 请问如何在首页显示两篇全文或者摘要,下面只显示标题?
当到了第二页/index.php/page/2/的时候, while($this->is(index)): ?> 也是true的 不行的