不带边栏的第一个柱子全宽

时间:2015-09-27 作者:Nick Walter

我想创建一个模板,其中第一个(最新的)帖子分别显示全宽,没有侧边栏。以下所有帖子都应该正常显示,如here

1st POST

2nd POST | SIDEBAR
3rd POST | SIDEBAR
4th POST | SIDEBAR
...
你能告诉我怎么做吗?

2 个回复
SO网友:nim

您还可以执行以下代码段:

$flag=0;
$args = array(
\'orderby\' => \'title\',
\'order\'   => \'DESC\',); 
$query = new WP_Query( $args );
while ( $query->have_posts() ) {
{
  the_post();
  if($flag==0)
  {
     // you first post\'s title, content etc
     $flag=1;
  }
  else
  {
      //rest of your post\'s title, sidebar, etc
  }
}

SO网友:vol4ikman

您必须创建一些计数器,用于统计查询中的所有帖子。

然后,用全宽div包裹第一根立柱。例如:

标题和内容内容

相关推荐