我想在我的跨苹果wordress主题中改变帖子循环的设计。 而不是标题底部的小缩略图和小描述,我希望小缩略图(200x200)直接向右,标题和小描述将显示在左侧(如newscast wordpress theme )
这是我的循环看起来如何: http://cor.co.il/info
我希望帖子循环看起来像这样:http://www.kriesi.at/themes/newscast/category/community/
我该如何管理?
答案 0 :(得分:0)
您必须在主题中更改“archive.php”。
在其中尝试使用此循环:
<?php while(have_posts()): the_post(); ?>
*your html code for one post*
<?php endwhile; ?>
在循环中显示缩略图:
the_post_thumbnail();
以循环方式显示标题:
the_title();
并显示说明:
the_content();
有关更多信息,请查看此信息 - &gt; Wordpress Codex
答案 1 :(得分:0)
自己解决!
我不得不更改以下行:
<?php the_post_thumbnail('650-200'); ?>
为:
<?php the_post_thumbnail(array(200,200), array('class' => 'alignright')); ?>
在行动中看到它:http://cor.co.il/info