-1

我的主题 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 上设置一些条件,那么 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 : ?> 

提前致谢..

4

1 回答 1

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 : ?>

在您的 while 中添加一个中断,它将在第一个循环后停止。

于 2013-09-24T09:38:39.560 回答