我正在创建一个模板,但每次我添加一个新的自定义帖子类型(在这个示例邻居中),它都会不断注入一个新的<ol>
和<li>
这是我目前拥有的代码,我正在使用ACF高级自定义字段插件创建自定义字段。
<?php
/*
Template Name: Neighborhoods Page
*/
include(TEMPLATEPATH."/header-internal.php");?>
<div class="container-space"></div>
<div class="container-main">
<?php
$args = array(
\'post_type\' => \'neighborhoods\'
);
$the_query = new WP_Query( $args );
?>
<?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<ol class="col-neigh-title neighborhood">
<li><a href="<?php the_field( \'url_neighborhood\' ); ?>"><?php the_field( \'neighborhood_name\' ); ?></a>
</li>
</ol>
<?php endwhile; else: ?>
<p>There are no posts or pages here</p>
<?php endif; ?>
</div>
<?php get_footer(); ?>