Witam
Znalazlem idealna "theme" dla siebie. Wszystko pieknie dziala jest jeden problem - jesli klika sie na tagi, archiwum, albo kategorie wyswietla sie lista wszystkich postow jednak bez zdjec to znaczy trzeba kliknac na dany post i wtedy wyswietla sie cala notka razem ze zdjeciami. Moja strona bedzie glownie polegala na zamieszczaniu fotografii wiec dla mnie to bardzo wazne zeby odwiedzajacy, ktory kliknie dana kategorie widzial od razu spis postow razem ze zdjeciami.

Ponizej wkleje zawartosc pliku archive.php bo to on chyba odpowiada za wyswietlanie kategorii itp:

CODE

<?php get_header(); ?>

<div id="main">

<?php if (have_posts()) : ?>

<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h3 class="pagetitle">Archive for the ‘<?php single_cat_title(); ?>’ Category</h3>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h3 class="pagetitle">Posts Tagged ‘<?php single_tag_title(); ?>’</h3>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h3 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h3>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h3 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h3>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h3 class="pagetitle">Archive for <?php the_time('Y'); ?></h3>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h3 class="pagetitle">Author Archive</h3>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h3 class="pagetitle">Blog Archives</h3>
<?php } ?>


<div class="navigation">
<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
</div>

<?php while (have_posts()) : the_post(); ?>
<div class="article">
<h2 class="header" id="post-<?php the_ID(); ?>">
<span>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?>
</a>
</span>
</h2>
<p class="byline">Posted by <?php the_author() ?> on <?php the_time('F jS, Y') ?> </p>

<div class="entry clearfix">
<?php the_content() ?>
</div>

<ul class="article_footer">
<li class="first"> Filed under <?php the_category(', ') ?></li>
<?php the_tags('<li>Tags: ', ', ', '', '</li>'); ?>
<?php edit_post_link('Edit', '<li>', '</li>'); ?>
<li class="last"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></li>
</ul>

</div>

<?php endwhile; ?>

<div class="navigation">
<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
</div>

<?php else : ?>

<h2 class="center">Not Found</h2>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>

<?php endif; ?>

</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>


Dla przykladu wkleje ten sam plik z innej theme ( w ktorej wszystko dziala tak jak bym chcial, ale jednak nie pasuje mi tak jak ta pierwsza), widze, ze sie roznia ale nie mam pojecia jak zmienic zeby bylo dobrze, probowalem troche zmieniac kod, ale nie wychodzi, nie jestem programista dlatego licze na zyczliwosc ze strony forumowiczow

CODE

<?php get_header(); ?>

<div id="main">

<?php if (have_posts()) : ?>

<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h3 class="pagetitle">Archive for the ‘<?php single_cat_title(); ?>’ Category</h3>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h3 class="pagetitle">Posts Tagged ‘<?php single_tag_title(); ?>’</h3>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h3 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h3>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h3 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h3>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h3 class="pagetitle">Archive for <?php the_time('Y'); ?></h3>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h3 class="pagetitle">Author Archive</h3>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h3 class="pagetitle">Blog Archives</h3>
<?php } ?>


<div class="navigation">
<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
</div>

<?php while (have_posts()) : the_post(); ?>
<div class="article">
<h2 class="header" id="post-<?php the_ID(); ?>">
<span>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?>
</a>
</span>
</h2>
<p class="byline">Posted by <?php the_author() ?> on <?php the_time('F jS, Y') ?> </p>

<div class="entry clearfix">
<?php the_content() ?>
</div>

<ul class="article_footer">
<li class="first"> Filed under <?php the_category(', ') ?></li>
<?php the_tags('<li>Tags: ', ', ', '', '</li>'); ?>
<?php edit_post_link('Edit', '<li>', '</li>'); ?>
<li class="last"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></li>
</ul>

</div>

<?php endwhile; ?>

<div class="navigation">
<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
</div>

<?php else : ?>

<h2 class="center">Not Found</h2>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>

<?php endif; ?>

</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>



Z gory dzieki za wszelka pomoc exclamation.gif
Pozdr
Mateusz

Juz znalazlem przyczyne trzeba zmienic

<div class="rsummary"><?php the_excerpt(); ?></div>

na

<div class="rsummary"><?php the_content(); ?></div>

w archive.php

Mam nadzieje ze bedzie dzialac teraz

Pozdr
Mateusz