Hallo zusammen,
habe mein neues Design hochgeladen und festgestellt das alle meine 49 Artikel weg sind. Im alten Design werden sie noch angezeigt. Link zum Screenshot Im neuen allerdings nicht mehr. Mein Seitenlink. Vielen Dank schonmal im voraus für die Hilfe
Mein Index.php
PHP
<?php get_header(); ?>
<div id="page">
<!--Inhalt-->
<div id="contentwrapper">
<div id="left-sidebar"><?php include (TEMPLATEPATH . '/sidebar-left.php'); ?></div>
<!--post-->
<?php query_posts($query_string.'&cat=-3&&order=DESC');
while (have_posts()) : the_post(); ?>
<div class="entry" id="post-<?php the_ID(); ?>"><div class="headerentry">
<p class="datum"><span class="content">Author: <?php the_author() ?>
<br />Date: <?php the_time('jS, M, Y') ?></span></p>
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1> </div>
<div style="clear:both;"></div>
<div class="entry-content">
<?php the_content(''); ?>
</div>
<div class="commentpost"><a href="http://s803.photobucket.com/albums/yy314/chrissy2504/Startingdays/?action=view&current=comments.png" target="_blank"><img src="http://i803.photobucket.com/albums/yy314/chrissy2504/Startingdays/comments.png" border="0" alt="Photobucket"></a> <?php comments_popup_link('0 Comments', '1 Comments', '% Comments'); ?></div>
</div>
<!--post-end-->
<?php endwhile; ?>
</div><?php if(function_exists('wp_paginate')) {
wp_paginate();
} ?>
</div><!--Inhalt-->
</div>
<?php get_footer(); ?>
Alles anzeigen