Hallo, ich schreibe das jetzt hier rein, weil ich vermute, dass das problem an meinen eigenen theme liegt
.
Also unsere nesfeed haut nur nochmüll raus(siehe hier:
l’optique - Dein Magazin » start
l'optique - Dein Magazin
ich vermute mal das es an meinen sidebars liegt in denen ich momentan genauso wie in der index.php und beginn.php inhalte darstelle
Beispiel (sidebar2.php)
PHP
<div class="sidebar2">
<li><h2><a class="kl" href="?cat=345" name="Texte">Neues aus der Textmetzgerei</a></h2>
<p class="smalls">(Geschichten, Gedanken, Gedichte, Du und Deine Welt...)</p>
<ul><?php query_posts('cat=345&showposts=7'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
<?php else : ?>
<p class="center"><?php _e('Not Found', 'kubrick'); ?></p>
<p class="center"><?php _e('Sorry, but you are looking for something that isn’t here.', 'kubrick'); ?></p>
<?php endif; ?>
</ul>
</li>
<div align="right"><a class="kl" href="?cat=345" name="Texte">...mehr Texte</a></div>
<li><h2><a class="kl" href="?cat=61" name="Rezensionen">Die neusten Artikel</a></h2>
<p class="smalls">(Rezensionen, Partyberichte, Interviews, Lieblingsband...)</p>
<ul><?php query_posts('cat=61&showposts=7'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
<?php else : ?>
<p>Nichts da</p>
<?php endif; ?>
</ul>
</li>
<div align="right"><a class="kl" href="?cat=61" name="Rezensionen">...mehr</a><br /><br /></div>
</div>
Alles anzeigen
relevant sollte das sein :
PHP
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
<?php else : ?>
<p class="center"><?php _e('Not Found', 'kubrick'); ?></p>
<p class="center"><?php _e('Sorry, but you are looking for something that isn’t here.', 'kubrick'); ?></p>
<?php endif; ?>
Alles anzeigen
oder liege ich jetzt da falsch und das problem liegt wo anders?
falls nicht wie kann ich das entsprechend darstellen, das der newsfeed wieder geht, falls es woanders liegt, weiß jemand wo ?
vielen dank schonmal
Stefan