看起来您试图输出错误的内容。您已经订购了$post_objects
, 不是$vMarca
. 尝试使用$post_objects
您的变量if
和foreach
声明如下:
<?php
$vMarca = get_field(\'tienda_marcas\' , false, false);
$post_objects = get_posts(array(
\'post__in\' => $vMarca,
\'order\' => \'ASC\' ,
\'orderby\' => \'title\'
));
if($post_objects)
{
echo \'<ul>\' ;
foreach($post_objects as $post)
{
setup_postdata($post); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php the_content(); ?>
}
echo \'</ul>\' ;
?>