我正在网站上工作,我有一个自定义帖子类型,该帖子类型是主页的特色。当你点击阅读更多时,你会得到“这个网页有一个重定向循环”这只发生在这篇文章上。为什么会这样?
你可以在这里看到它。 http://taabc.org/
如果您选择Alumni Spotlight并点击了解更多信息。这就是我得到错误的地方。
请帮忙!
<?php
$args = array(
'post_type' => 'alumni spotlight',
'posts_per_page' => '1',
);
$the_query = new WP_Query( $args ); ?>
<div class="alumni-spotlight-bg">
<div id="container" class="alumni-spotlight">
<?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<h2>Alumni Spotlight</h2>
<div class="alumni-name"><?php the_title(); ?></div>
<div class="alumni-spotlight-video"><?php the_field( 'youtube_video' ); ?></div>
<p><?php the_field( 'excerpt' ); ?></p>
<a class="alumni-spotlight-btn" href="<?php the_permalink(); ?>"><img src="<?php bloginfo('template_directory'); ?>/core/images/buttons/read-more-btn.png" /></a>
<?php endwhile; else: ?>
<p>There are no posts or pages here.</p>
<?php endif; ?>
</div>
</div><!-- End alumni-spotlight --->