我有一个名为“listing”的自定义帖子类型,并且正在使用一个名为content-own的模板。php来显示我的所有列表。在该页面中,我使用:
<a href="<?php echo str_replace( home_url(), \'\', get_permalink($post->ID) ); ?>
获取每个列表的链接。当我单击该链接时,它会显示该页面上的所有列表,而不仅仅是单个列表。我用于单一列表的模板是单一列表。指向内容列表的php。php。我有:
<article id="post-<?php the_ID(); ?>" <?php post_class($post-
>post_name); ?>>
<div class="container mainPage">
<div class="row">
<div class="entry-content col-sm-9">
<?php $args = array( \'post_type\' => \'listing\');
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class="col-6 col-sm-6 box no-gutters">
<?php sd_template_post_thumbnail();
the_title(\'<h2>\', \'</h2>\'); ?>
<span><?php the_field(\'price\'); ?></span>
<span><?php the_field(\'description\'); ?></span>
<span><?php the_field(\'style\'); ?></span>
<span><?php the_field(\'design\'); ?></span>
</div>
<?php endwhile; ?>
</div><!--entry-content col-sm-9-->
<div class="sideContact col-sm-3">
<?php get_sidebar(); ?>
</div><!--sideContact-->
</div><!--row-->
</div><!--entry-content-->
</article><!-- #post-<?php the_ID(); ?> -->
因此,我不确定我的模板设置方式或内容列表上的循环是否有误。php页面。希望我能正确解释这一点,因为我对自定义帖子类型和Wordpress还比较陌生。