我想在 Wordpress(循环)中的“阅读更多链接”(它在我的网站上显示“Läs mer”,瑞典语)添加清晰的浮动。
这是我的循环,
<?php query_posts($query_string . '&cat=-3'); ?>
<ul id="customStart" class="group">
<?php query_posts('showposts=55&cat=5,');
if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<div class="blogPostInfo"><?php the_time('l, F jS, Y') ?><div class="fltLeft"> | <?php the_category(', ') ?></div></div>
<div id="startBg">
<?php the_post_thumbnail('start-pic'); ?>
</div>
<h2><?php the_title(); ?></h2>
<?php the_content( __( '<span class="meta-nav"> Läs mer</span>', 'twentyten' ) ); ?>
</li>
<?php endwhile; ?>
</ul>
<?php endif; wp_reset_query();?>
http://www.missbee.se/eliteRehab2/
查看网站的下部以找到我要清除的按钮;O)