在你上面的代碼,你開了WordPress的內容循環。我不知道爲什麼你必須開火兩個循環,雖然他們都會工作。首先將打印最近發佈的帖子,具體取決於您通過WordPress儀表板中的設置 - >閱讀標籤選擇的每頁帖子數,第二個帖子將再次列出前4個最近的帖子。我使用第一個循環來告訴你如何創建像網格一樣的附加圖像。
下面是你必須做的PHP/HTML修改:
<?php $count = 1; if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="one-half <?php if($count++ % 2 == 0): echo 'last-col'; endif; ?>">
<?php
// the function below will print the featured image attached to the post
the_post_thumbnail('your-featured-image-sizename'); ?>
</div>
<!-- one-half -->
<div class="one-half">
<span class="post_stamp"><?php the_time('j m Y'); ?></span>
<span class="post_cat"><?php the_category(', '); // This will print News if you filled the post under News Category ?></span>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt(); // Insteading of printing the whole content this function will print exceprt only ?>
</div>
<!-- one-half -->
<div class="clearfix"><!-- --></div>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
你將不得不把下面給出的鏈接到你的樣式文件:
<style>
.one-half{width: 50%; float: left;}
.last-col{float: right;}
.clearfix{clear: both; overflow: hidden;}
</style>
作出上述改變後您的帖子將顯示爲附加圖片。好運(y)