Zdravím, potrebujem pomôcť so zmenou jednej funkcie, totižto, mám kategórie a keď kliknem na jednu z nich tak sa mi články zobrazia bez náhľadu čiže len nadpis, avšak na "nástenke" resp hlavnej stránke sa zobrazia aj s náhľadom.
Vedel by mi s tým niekto pomôcť?malo by to byť v tomto kóde index.php:
Kód:
<?php get_header(); ?>
<div id="content">
<div id="content-post">
<?php include (TEMPLATEPATH . '/headline.php'); ?>
<div id="post-entry">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post-meta" id="post-<?php the_ID(); ?>">
<div class="post-meta-top">
<div class="calendar">
<span class="day"><?php the_time('j'); ?></span>
<span class="month"><?php the_time('M'); ?></span>
</div>
<div class="post-info">
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<span class="stats">
Posted By <?php the_author_posts_link(); ?> <?php _e('on'); ?> <?php the_time('l, F jS Y') ?> under: <?php the_category(', ') ?> <?php if(function_exists("the_tags")) : ?><?php the_tags() ?><?php endif; ?> <?php edit_post_link('edit'); ?> </span>
</div>
</div><!-- POST META TOP END -->
<div class="postcontent">
<?php if((is_category()) || (is_archive()) || (is_search())) { ?>
<?php the_excerpt(); ?>
<?php } else { ?>
<?php the_content('...click here to read more'); ?>
<?php } ?>
</div><!-- POST CONTENT END -->
<?php include (TEMPLATEPATH . '/social.php'); ?>
</div><!-- POST META END -->
<?php endwhile; ?>
<?php include (TEMPLATEPATH . '/paginate.php'); ?>
<?php else: ?>
<?php include (TEMPLATEPATH . '/result.php'); ?>
<?php endif; ?>
</div><!-- POST-ENTRY END -->
</div><!-- CONTENT POST END -->
</div><!-- CONTENT END -->
<div class="clearfix"></div>
</div><!-- CENTER CONTENT END -->
<div class="bottom"><span></span></div>
</div><!-- LIQUID ROUND END -->
</div><!-- POST WRAP END -->
</div><!-- POST COLUMN END -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
predpokladám, že to bude táto časť
<div class="postcontent">
<?php if((is_category()) || (is_archive()) || (is_search())) { ?>
<?php the_excerpt(); ?>
<?php } else { ?>
<?php the_content('...click here to read more'); ?>
<?php } ?>
</div>
ale neviem čo s tým ďalej, môžte ma niekto nasmerovať?