我已经创建了名为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; ?>
现在我想显示单个页面的内容。但内容并非来自相关页面。内容来自我创建的最新项目内容。我怎样才能解决这个问题?谢谢你的帮助。