在wordpress中获取两次页面数据

时间:2013-09-24 09:27:18

标签: php html wordpress

我的主题page.php为:

<?php /* The loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?> >
        <header class="entry-header">
               <div class="hd"><?php the_title(); ?></div>
            <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
                <div class="video"><?php the_post_thumbnail(); ?></div>
            <?php endif; ?>
            <div class="hd"><?php //the_title(); ?></div>
        </header><!-- .entry-header -->     
        <?php the_content(); ?>
        <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
        <!-- .entry-content -->
        <footer class="entry-meta">
            <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
        </footer><!-- .entry-meta -->
    </article><!-- #post -->
    <?php // comments_template( '', true ); ?>      
<?php endwhile; ?>

我在wordpress博客,图片和新闻中制作了三页,我还为每个分配了类别。现在我已经安装了 php-exec插件。现在我在页面编辑器中编写一些php代码来检索博客数据...

它工作正常,但它获取数据两次,现在得到它是因为page.php。

所以我可以在page.php上有一些条件,如果我试图通过cotegory获取一些数据然后page.php数据将无法显示...

这是我在博客页面编辑器上应用的代码

<?php if (query_posts('cat=63&showposts=5')) : ?>
    <?php while (have_posts()) : the_post();
        // do whatever you want
    ?>
    <div class="gallery_views"> 
        <div class="hd"><?php the_title(); ?></div>
        <?php // get_template_part( 'content', get_post_format() ); ?>
        <?php // cup_post_nav(); ?>
        <?php the_post_thumbnail(); ?>
        <?php comments_template(); ?>
        <b><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></b>
    </div>
    <?php endwhile; ?>
<?php else : ?> 

提前致谢..

1 个答案:

答案 0 :(得分:1)

<?php if (query_posts('cat=63&showposts=5')) : ?>
<?php while (have_posts()) : the_post();
  // do whatever you want
?><div class="gallery_views"> 
 <div class="hd"><?php the_title(); ?></div>
<?php // get_template_part( 'content', get_post_format() ); ?>
                <?php // cup_post_nav(); ?>
<?php the_post_thumbnail(); ?>
                <?php comments_template(); ?>
<b><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></div>
<?php
break;
endwhile;
?>
<?php else : ?>

在你的时间里加一个休息时间,它会在第一次循环后停止。