Klappers: Berichten

$args = array ( 'posts_per_page' => -1, 'cat' => 6, 'orderby' => 'title', 'order' => 'ASC' );
$myposts = get_posts( $args );

foreach( $myposts as $post ) :	setup_postdata($post);

echo "<div class='klap'>";
echo "<header class='blk balk brr gat_s'>";
echo "<div class='fa fas'></div>";
the_title( '<h3>', '</h3>' );
echo "</header>";
echo "<div class='mt mt_s'>";
the_content();
echo "</div>";
echo "</div>";		
					  
endforeach;