$cat->query('showposts=100&cat=3');
$cat2 = new WP_query();
$cat2->query('showposts=100&cat=4');
?>
<h2 style="color:#FFFFFF">First category</h2><br>
<ul>
<?php
while ($cat->have_posts()) : $cat->the_post();
?>
<li><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a><br></li>
<?php
endwhile;
?>
</ul>
<br/><br/>
<h2 style="color:#FFFFFF">Second category</h2><br>
<ul>
<?php
while ($cat2->have_posts()) : $cat2->the_post();
?>
<li><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a><br></li>
<?php
endwhile;
?>
</ul>
Прости, что не ответили
это в сайдбар, с помощью плагина PHP Code Widget #wordpress #php
Обсуждают сегодня