wordpress 分类文章显示php代码

<?php
    $cats = get_categories();
    foreach ( $cats as $cat ) {
    query_posts( ‘showposts=2&cat=’ . $cat->cat_ID );
?>
   <div class=tdiv>&hearts;<?php echo $cat->cat_name; ?><a href=”http://81.70.49.155/index.php/category/<?php echo $cat->cat_name; ?>/”>…更多</a></div><div class=bdiv></div>
        <?php while ( have_posts() ) { the_post(); ?>
        &diams;[<?php the_time(‘Y-n-d’); ?>]&nbsp;<a href=”<?php the_permalink(); ?>”><?php the_title(); ?>…<?php the_views(); ?></a></br>
        <?php } wp_reset_query(); ?>
<?php } ?>