Add missing closing bracket of a element
This commit is contained in:
parent
3257afac1a
commit
cb567117fe
2 changed files with 22 additions and 26 deletions
|
|
@ -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>');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue