Hallo,
kann mir jemand sagen, wo hier der Fehler ist ?
PHP
<?php get_header(); ?>
<!-- start page -->
<div id="page">
<!-- start content -->
<div id="content">
<div>
<div class="ueberschrift-politik"><a href="<?php echo get_category_link(5); ?>">Politik</a></p></div>
<?php query_posts('cat=5&showposts=1'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="post-head">
<h1><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
</div>
<div class="post-author">
Meldung von <strong><?php the_author(); ?></strong>
</div>
<div class="post-content">
<?php the_excerpt(50); ?>
</div>
<div class="post-meta">
<span class="date"><?php the_time('d/m/Y') ?></span>
<span class="comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
<span class="comments"><?php the_category(', ') ?></span>
</div>
</div>
<?php endwhile; ?>
<div id="content">
<div>
<div class="ueberschrift-politik"><a href="<?php echo get_category_link(11); ?>">Sport</a></p></div>
<?php query_posts('cat=11&showposts=1'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="post-head">
<h1><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
</div>
<div class="post-author">
Meldung von <strong><?php the_author(); ?></strong>
</div>
<div class="post-content">
<?php the_excerpt(50); ?>
</div>
<div class="post-meta">
<span class="date"><?php the_time('d/m/Y') ?></span>
<span class="comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
<span class="comments"><?php the_category(', ') ?></span>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center"><?php _e('Page not found!'); ?></h2>
<p class="center"><?php _e('Sorry! Try using the search form below.'); ?></p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
</div>
<!-- end content -->
<!-- start sidebar -->
<?php get_sidebar(); ?>
<!-- end sidebar -->
</div>
<!-- end page -->
<?php get_footer(); ?>
Alles anzeigen
unexpected $end schreib er hin