konto usunięte
Temat: Wyświetlanie postów tylko pod daną kategorią
CześćPrzerabiam skórkę Premium News. Domyślnie ma ona taki układ: http://zeus.umcs.lublin.pl/~ofensywa/ Chciałabym, żeby posty na stronie głównej nie dodawały się od góry do dołu, tylko zmieniały się zawsze w jednym miejscu przypisanym na stałe do danej kategorii. To kod odpowiedzialny za stronę główną:
<div class="box">
<?php
$the_query = new WP_Query('cat=-'. $GLOBALS[ex_feat] . ',-' . $GLOBALS[ex_vid] . '&showposts=' . get_option('woo_other_entries') . '&orderby=post_date&order=desc');
$counter = 0; $counter2 = 0;
while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID;
?>
<?php $counter++; $counter2++; ?>
<div class="post <?php if ($counter == 1) { echo 'fl'; } else { echo 'fr'; $counter = 0; } ?>">
<?php woo_image('height=57&width=100&class=th'); ?>
<h2><?php the_category(', ') ?></h2>
<h3><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<p class="posted"><?php _e('Data:',woothemes); ?> <?php the_time('d F Y'); ?> r.</p>
<p><?php echo strip_tags(get_the_excerpt(), '<a><strong>'); ?> <span class="continue"><a title="<?php _e('Permanent Link to',woothemes); ?> <?php the_title(); ?>" href="<?php the_permalink() ?>"><?php _e('Więcej',woothemes); ?></a></span></p>
<p class="comments"><?php comments_popup_link(__('Komentarze (0)',woothemes), __('Komentarze (1)',woothemes), __('Komentarze (%)',woothemes)); ?></p>
</div><!--/post-->
<?php if ( !($counter2 == get_option('woo_other_entries')) && ($counter == 0) ) { echo '<div class="hl-full"></div>'; ?> <div style="clear:both;"></div> <?php } ?>
<?php endwhile; ?>
<div class="fix" style="height:20px"></div>
</div><!--/box-->
Dziękuję z góry za porady.