1

我希望特定类别的每个循环在“特色图像”上交替浮动。这样每个新帖子的“特色图片”都会改变浮动(右侧,左侧)。

我使用以下代码在每个帖子上提取奇数或偶数类,

<?php query_posts('showposts=5&cat=5,'); if (have_posts()) : ?>
<?php $c = 0; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
       <div <?php post_class((++$c % 2 === 0) ? 'odd' : 'even'); ?>>
       <h2 class="entry-title"><a>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="featuredImage">
                <?php the_post_thumbnail('medium'); ?>
        </div>
    </div>
<?php endwhile; ?>
<?php endif; ?>
<?php endif; wp_reset_query();?>

然后我试图在不同的帖子类(奇数或偶数)上用css更改“特色图片”上的浮动。例如,

.even { width:650px; height:250px; background-color: #000;}

.odd{ width:650px; height:250px; background-color: #616161;}
.odd, .featuredImage{ float:left;}
.even, .featuredImage{ float:right;}

我的例子,http ://fskador.se/myPerformanceLast/?page_id=49

但不能让它工作!请帮忙!

4

1 回答 1

0

不正确

<h2 class="entry-title"><a>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>

已更正

<h2 class="entry-title"><a title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>

CSS

不正确

.odd, .featuredImage{ float:left;}
.even, .featuredImage{ float:right;}

已更正

div.odd .featuredImage{ float:left;} 
div.even .featuredImage{ float:right;}

或者

.odd .featuredImage{ float:left;}
.even .featuredImage{ float:right;}
于 2012-04-18T13:47:28.990 回答