<?php query_posts(
$query_string
.
'&showposts=10'
); ?>
<?php
if
( have_posts() ) :
while
( have_posts() ) : the_post(); ?>
<div
class
=
"story"
>
<div
class
=
"story-content"
>
<h4><a href=
"<?php the_permalink(); ?>"
><?php the_title(); ?></a></h4>
<?php the_excerpt(); ?>
</div>
</div>
<?php
endwhile
;
endif
; ?>
Advertisements
thanks , it’s help full for me