我无法让ACF显示在该术语本身的存档页面上。
<?php the_field('download_link'); ?>
我将上面的代码添加到我的主题中,但它不起作用。我也试过
<p><?php the_field('download_link', $term); ?></p>
以下是我页面上的默认代码(content-archive.php)。我希望以前出现这个。
<div <?php post_class(); ?>>
<?php do_action( 'archive_post_before' ); ?>
<article>
<div class='post-header'>
<?php do_action( 'sticky_post_status' ); ?>
<h2 class='post-title'>
<a href="<?php echo esc_url( get_permalink() ); ?>"><?php the_title(); ?></a>
</h2>
<?php get_template_part( 'content/post-byline' ); ?>
</div>
<div class="post-content">
<?php ct_chosen_excerpt(); ?>
</div>
</article>
<?php do_action( 'archive_post_after' ); ?>