Hallo Leute,
ich bin leider total der Wordpress Laie und habe von einem Freund nun den Blog übernommen. Mir ist ein Fehler dort aufgefallen, per Google habe ich zwar schon einige Sachen gefunden, aber ich bekomme es bei mir nicht hin. Und zwar wird mir unter "Ältere Beiträge" immer die Startseite angezeigt. Die Fehlerstelle habe ich schon gefunden, kann sie aber nicht einfach entfernen.
Die Fehlerstelle liegt wohl bei
Ich weiß auch nicht so richtig was "caller_get_posts" bedeutet. Kann mir jemand helfen?
HTML
<?php get_header(); ?>
<div id="left" style="margin-left:3px;">
<?php
include('left.php');
?>
</div>
<div id="content">
<?php
include('highlights.php');
?>
<br style="clear:both;">
<?php query_posts(array('post__in'=>get_option('sticky_posts')));
while (have_posts()) : the_post(); ?>
<?php $postCount++;?>
<div class="titelbar">
<div class="date_stamp">
<p class="date_time"><?php the_time('d'); ?></p>
<p class="date_time2">
<?php
echo substr(the_time('F'), 0, 3);
?>
</p>
</div>
<div class="titelbarbg">
<p style="float:left;text-align:left;margin-bottom:10px;">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><h1><?php the_title(); ?></h1></a>
<img src="wp-content/themes/blau/images/autor.gif">Autor: <?php the_author(', '); ?> | Kategorie: <?php the_category(', '); ?> | <?php comments_popup_link('Keine Kommentare', '1 Kommentar', '% Kommentare', 'comment'); ?>
</p>
</div>
</div>
<br style="clear:both;">
<div class="main" style="background: url('http://www.die-blaue-seite.de/wp-content/themes/blau/images/verlauf.gif') repeat-x bottom;">
<?php
nl2br(the_content('[... weiterlesen]')); ?>
<p style="margin-top:10px;">
<?php edit_post_link('Edit', '', ''); ?>
</p>
</div>
<br style="clear:both;" />
<?php endwhile; ?>
<br style="clear:both;">
<?php
query_posts('cat=82&caller_get_posts=1');
if (have_posts()) :?>
<?php $postCount=0; ?>
<?php while (have_posts()) : the_post();?>
<?php $postCount++;?>
<div class="titelbar">
<div class="date_stamp">
<p class="date_time"><?php the_time('d') ?></p>
<p class="date_time2">
<?php
$Text = the_time('F');
$GekuerzterText = substr($Text, 0, 3);
echo $GekuerzterText;
?>
</p>
</div>
<div class="titelbarbg">
<p style="float:left;text-align:left;margin-bottom:10px;">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><h1><?php the_title(); ?></h1></a>
<img src="wp-content/themes/blau/images/autor.gif">Autor: <?php the_author(', '); ?> | Kategorie: <?php the_category(', '); ?> | <?php comments_popup_link('Keine Kommentare', '1 Kommentar', '% Kommentare', 'comment'); ?>
</p>
</div>
</div>
<br style="clear:both;">
<div class="main" style="background: url('http://www.die-blaue-seite.de/wp-content/themes/blau/images/verlauf.gif') repeat-x bottom;">
<?php
nl2br(the_content('[... weiterlesen]')); ?>
<p style="margin-top:10px;">
<?php edit_post_link('Edit', '', ''); ?>
</p>
</div>
<br style="clear:both;" />
<?php endwhile; ?>
<div class="navigation">
<?php wp_pagenavi(); ?>
</div>
<?php else : ?>
<h2>404 - Not Found</h2>
<div class="entrybody">Diese Seite gibt es nicht.</div>
<?php endif; ?>
</div>
<div id="right">
<?php dynamic_sidebar('right Sidebar'); ?>
</div>
<?php get_footer(); ?>
Alles anzeigen