1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| <ul> <?php $args = array( 'meta_key' => 'views', 'orderby' => 'meta_value_num', 'posts_per_page' => 8, 'order' => 'DESC' ); query_posts($args); $count = 0; while (have_posts()) : the_post(); $count++; $class = ($count <= 3) ? 'red' : ''; ?> <li> <i class="<?php echo $class; ?>"><?php echo $count; ?></i> <a href="<?php the_permalink(); ?>" target="_blank"><?php the_title(); ?></a> </li> <?php endwhile; wp_reset_query(); ?> </ul>
|