如何显示来自自定义帖子类型的单个页面的数据内容?

时间:2017-03-04 作者:nriddhi

我已经创建了名为Projects的自定义帖子类型。还创建了单个项目。php。代码在这里

<?php
                  $args = array(
                    \'post_type\' => \'projects\',
                    \'posts_per_page\' => \'1\',
                    \'post__not_in\' => array( $post->ID )
                             );
                     // the query
                    $query = new WP_Query( $args );

                    // The Loop
                    if ( $query->have_posts() )  ?>

                 <?php while ( $query->have_posts() ) : $query->the_post() ; ?>

                                    <!-- start project content -->
                                    <div class="project-content">

                                        <h2>Your Project Description</h2>

                                      <?php the_content(); ?> 

                           </div>

                     <?php  endwhile;  ?>
现在我想显示单个页面的内容。但内容并非来自相关页面。内容来自我创建的最新项目内容。我怎样才能解决这个问题?谢谢你的帮助。

1 个回复
最合适的回答,由SO网友:TrubinE 整理而成

单个项目。php-应包含以下代码:

<?php
get_header();
if (have_posts()) :
   while (have_posts()) :
      the_post();
         the_content();
   endwhile;
endif;
get_sidebar();
get_footer(); 
?>
显示tekschey记录不一定使用$query = new WP_Query ($ args);