2017-06-14 85 views
0

我希望我的第一篇文章有​​不同的風格,並且位於當前文章的上方。我只喜歡在定製風格的設計中獲得第一篇文章,其餘的文章就像以前一樣。頂帖寬度將爲1188px。如果有人知道如何做到這一點,我會很高興。謝謝。如何在wordpress頁面上以不同格式顯示第一篇文章?

下面是我想要的圖片,第一張圖片顯示了當前情況,下一張圖片顯示了我想要實現的內容。

picture one picture two

我當前的PHP項目在這裏:

<?php get_header(); ?> 
<!-- Begin Content --> 
<div id="content-a"> 

<?php if (have_posts()) : ?> 
<?php while (have_posts()) : the_post(); ?> 
<div class="post"> 
<div class="imgdiv"><a href="<?php the_permalink() ?>"><img src="<?php echo catch_that_image() ?>" width="250"></a></div> 
<div class="p-heading"><h1><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1></div> 
<div class="p-content"> 
<?php the_excerpt(); ?> 
</div> 
<div class="p-info"><?php the_time('j.m.Y') ?> | <?php the_category(', '); ?> | <img src="http://www.virmodrosti.com/wp-content/uploads/comments.png" alt="Komentarji" width="26" height="12"><?php $totalcomments = get_comments_number(); echo $totalcomments; ?></div> 

</div> 

<?php endwhile; ?> 

<div class="navigation"> 
<div class="alignleft"><?php next_posts_link('Naslednja stran') ?></div> 
<div class="alignright"><?php previous_posts_link('Prejšnja stran') ?></div> 
<div class="clear"></div> 
</div> 

    <?php else : ?> 

</div> 
<div id="content"> 

<div class="post"> 
<div class="p-heading"><h1 class="center">Ni najdeno</h1></div> 
<div class="p-content"><p class="center">Oprostite, ampak iščete nekaj kar ni tukaj.</p> 
</div> 
</div> 
    <?php endif; ?> 

     </div> 

<!-- End Content --> 
<?php get_sidebar(); ?> 
<?php get_footer(); ?> 
+1

爲什麼不使用特定CSS樣式僅定位在後列表中的第一個孩子?根本不需要擔心循環中發生了什麼。 – Korgrue

回答

1
<?php $i=1; ?> 
<?php if (have_posts()) : ?> 
<?php while (have_posts()) : the_post(); ?> 
<?php if ($i == 1){ 

// here do the custom look you want to give to 1st post, i am sorry i dont know html 
<div class="post"> 
<div class="imgdiv"><a href="<?php the_permalink() ?>"><img src="<?php echo catch_that_image() ?>" width="250"></a></div> 
<div class="p-heading"><h1><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1></div> 
<div class="p-content"> 
<?php the_excerpt(); ?> 
</div> 
<div class="p-info"><?php the_time('j.m.Y') ?> | <?php the_category(', '); ?> | <img src="http://www.virmodrosti.com/wp-content/uploads/comments.png" alt="Komentarji" width="26" height="12"><?php $totalcomments = get_comments_number(); echo $totalcomments; ?></div> 

</div> 
<?php } else { ?> 

<div class="post"> 
<div class="imgdiv"><a href="<?php the_permalink() ?>"><img src="<?php echo catch_that_image() ?>" width="250"></a></div> 
<div class="p-heading"><h1><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1></div> 
<div class="p-content"> 
<?php the_excerpt(); ?> 
</div> 
<div class="p-info"><?php the_time('j.m.Y') ?> | <?php the_category(', '); ?> | <img src="http://www.virmodrosti.com/wp-content/uploads/comments.png" alt="Komentarji" width="26" height="12"><?php $totalcomments = get_comments_number(); echo $totalcomments; ?></div> 

</div> 
<?php } $i++; ?> 
<?php endwhile; ?> 
+0

太棒了!沒有所有的複雜和不必要的東西!謝謝!你是個天才! – Techuser

+0

哈哈沒有兄弟沒有什麼是天才,很高興可以幫助你:) @Techuser – Exprator

+0

我有一個問題,也許你應該幫助我的第一篇文章。這篇文章需要他自己的div id =「content-big」包裝,例如,而不是id =「content-a」,就像其他帖子一樣。否則,它不能被移動到頂部,因爲右側邊欄,我想刪除div id =「content-a」,並用其他id替換爲該帖子,但它不容易工作 – Techuser

相關問題