我试图在不同的特定父项($ contentType和$ categoryList)下获得选定的类别,但是问题是以下代码生成了所有类别,而不是在$ post下,即使我指定了它。 我在做什么错了?
<?php
$posts = get_field('featured_resources');
if( $posts ): ?>
<?php foreach( $posts as $post): ?>
<?php setup_postdata($post); ?>
<?php
$categoryList=get_categories(
array( 'category-list' => $post )
);
$contentType=get_categories(
array( 'content-type' => $post )
);
echo $categoryList[0]->slug;
echo $contentType[0]->slug;
?>
<?php endforeach; ?>
<?php endif; ?>
谢谢!