只首页只第一篇文章样式显示不一样,可以用以下判断:

<?php if (($this->_currentPage == 1) && ($this->sequence == 1)): ?>
... //首页第一篇文章
<?php else: ?>
... //其它文章
<?php endif; ?>

判断第一篇文章:

第一种

<?php if ($this->sequence == 1) : ?>
//需要输出的内容
<?php endif; ?>

第二种是在循环里加个序数递增

  1. 在循环开始语句里改

    <?php $index = 0; while ($this->next()) { $index++ ?>

  2. 然后在需要的地方判断

    <?php if ($index == 1) { echo '需要输出的内容'; } ?>

其实这种和第一种没什么区别,第一种简洁

第三种,以前参考WP的,没想到也能用

  1. 先给第一篇的true值

    <?php $first = true; ?>

  2. 判断使用

    <?php if ($first == true) echo "输出需要的内容" ?>

  3. 结束第一篇判断

    <?php $first = false; ?>