Add missing closing bracket of a element

This commit is contained in:
Markus Ankenbrand 2016-09-10 21:32:34 +02:00
parent 3257afac1a
commit cb567117fe
2 changed files with 22 additions and 26 deletions

View file

@ -89,7 +89,7 @@
</script>
</div>
<h2> Tagebucheinträge in diesem Urlaub </h2>
<h2> Tagebucheinträge in diesem Urlaub: </h2>
<ul>
<?php
$tagebuch = get_posts(array(
@ -97,7 +97,7 @@
));
foreach($tagebuch as $tb){
if(get_field('urlaub',$tb->ID)->ID === get_the_ID()){
echo('<li><a href="'.get_the_permalink($tb->ID).'" id="post-'.$tb->ID.'" ');
echo('<li><a href="'.get_the_permalink($tb->ID).'" id="post-'.$tb->ID.'"> ');
echo(get_the_title($tb->ID).'</a></li>');
}
}