ACF /自定义分类

时间:2015-11-25 13:36:36

标签: php wordpress

我创建了一个名为 downloads_categories 的自定义分类法,它类似于类别,并且有一个模型列表;

enter image description here

分类法链接到名为下载的自定义帖子类型,帖子类型包含2个元素/字段(the_title)(the_field('file') )

在我的模板分类 - downloads_categories.php中,如何回显与当前分类术语相关的所有帖子?我目前使用以下代码,它只回显第一个可用的下载。

<a href src="<?php the_field('file'); ?>" alt="" /><?php the_title(); ?></a>

1 个答案:

答案 0 :(得分:2)

要扩展我的评论,您需要一个常规的wordpress循环:

<?php if(have_posts()):while(have_posts()):the_post();?>
    <a href src="<?php the_field('file'); ?>" alt="" /><?php the_title(); ?></a>
<?php endwhile; endif;?>