在我的wordpress上重复输入博客?怎么修?

时间:2012-05-07 01:27:07

标签: css wordpress

我对我的网站模板的css表编码很困惑。如果你去www.ohepic.com,你可以看到前十个入口博客......然后下次再次与旧版博客重复....

如何防止这种重复发生?有人可以帮我找到哪个css表影响这个吗?我该如何改变呢?

1 个答案:

答案 0 :(得分:0)

创建一个类别,然后您可以尝试此代码。它可能会有所帮助

 <?php   
        $args=array(
          'cat' => ***,
          'post_type' => 'post',
          'post_status' => 'publish',
          'posts_per_page' => 10,
          'caller_get_posts'=> 1
          );
        $my_query = null;
        $my_query = new WP_Query($args);
        if( $my_query->have_posts() ) {
          echo 'List of Posts';
          while ($my_query->have_posts()) : $my_query->the_post(); ?>
          <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
           <?php
          endwhile;
        }
    wp_reset_query();  // Restore global post data stomped by the_post().
    ?>

注意:***是Category_id