diff --git a/functions.php b/functions.php
index 2025e8e..539dafd 100644
--- a/functions.php
+++ b/functions.php
@@ -39,8 +39,8 @@ function atravelblog_related_posts() {
)
) );
if ($tagebuch->have_posts()) :
+ echo('
');
- echo('
Tagebuch Einträge:
');
while ( $tagebuch->have_posts() ) : $tagebuch->the_post();
global $post;
get_template_part( 'content', get_post_format() );
@@ -52,8 +52,8 @@ function atravelblog_related_posts() {
} elseif($cat == 'Tour') {
$urlaub = new WP_Query(array('p' => get_field('urlaub')[0]));
if ($urlaub->have_posts()) :
+ echo('
Urlaub:
');
echo('
');
- echo('
Urlaub:
');
while ( $urlaub->have_posts() ) : $urlaub->the_post();
global $post;
get_template_part( 'content', get_post_format() );