我正在创建一个新网站,我的每个博客帖子都有一些ACF。我不希望这篇文章可以点击,所以我希望它只会出现在头版。我的AFC工作得很好,但尽管我有2篇博文,最后一页的AFC是shwon。
有没有简单的解决方法?
我的索引:
<?php get_header(); ?>
<div id="main">
<hr>
<div id="content">
<?php $work_years = get_field(\'work_years\'); ?>
<?php $image = get_field(\'image\'); ?>
<?php $function = get_field(\'function\'); ?>
<?php $certificates = get_field(\'certificates\'); ?>
<?php $website_link = get_field(\'website_link\'); ?>
<?php include \'postinfo.php\';?>
</div>
</div>
<div id="delimiter">
</div>
<?php get_footer(); ?>
以及我的postinfo,其中包括AFC:<?php echo $work_years; ?><BR>
<img src="<?php echo $image; ?>"><BR>
<?php echo $function; ?><BR>
<?php echo $certificates; ?><BR>
<a href="<?php echo $website_link;?>">Website</a><BR>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<h4>Posted on <?php the_time(\'F jS, Y\') ?></h4>
<p><?php the_content(__(\'(more...)\')); ?></p>
<hr> <?php endwhile; else: ?>
<p><?php _e(\'Sorry, no posts matched your criteria.\'); ?></p><?php endif; ?>