I've been trying to order the custom fields alphabetically, but I can't get the ordered list I want... this is the code I'm using:
<?php
$vMarca = get_field('tienda_marcas' , false, false);
$post_objects = get_posts(array(
'post__in' => $vMarca,
'order' => 'ASC' ,
'orderby' => 'title'
));
if($vMarca)
{
echo '<ul>' ;
foreach($vMarca as $post_objects)
{
echo '<li>' . $post_objects . '</li>' ;
}
echo '</ul>' ;
}
?>
I need the custom fields to be ordered alphabetically.
