Nobody can help me?
Whats wrong with my code?
<table class="table table-bordered">
<?php
$post_objects = get_field('aromen');
if( $post_objects ): ?>
<?php foreach( $post_objects as $post_object): ?>
<tr>
<td> <?php the_field('menge'); ?> </td>
<td> <?php echo get_the_title($post_object->ID); ?> </td>
</tr>
<?php wp_reset_postdata(); ?>
<?php endforeach; ?>
<?php endif;
?>
</table>