1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <?php if(is_home()||is_category()||is_page()) { ?> <div class="widget"> <div id="tab-title"> <h2><span class="selected">热评文章</span><span>最新文章</span><span>随机文章</span></h2> <div id="tab-content"> <ul><?php query_posts(array('posts_per_page' => 15,'caller_get_posts' =>1,'orderby' =>comment_count,));while ( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php echo mb_strimwidth(get_the_title(), 0, 40,"...") ?></a></li> <?php endwhile;wp_reset_query();?> </ul> <ul class="hide"><?php query_posts(array('posts_per_page' => 15,'caller_get_posts' =>1,'orderby' =>date,));while ( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php echo mb_strimwidth(get_the_title(), 0, 40,"...") ?></a></li> <?php endwhile;wp_reset_query();?> </ul> <ul class="hide"><?php query_posts(array('posts_per_page' => 15,'caller_get_posts' =>1,'orderby' =>rand,));while ( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php echo mb_strimwidth(get_the_title(), 0, 40,"...") ?></a></li> <?php endwhile;wp_reset_query();?> </ul> </div> <div class="box-bottom"> <b class="lb"></b> <b class="rb"></b> </div> </div> </div> <?php } ?>
|