Hi guys,
As i mentioned in the title, i try to grab the latest 10 sticky posts at index.php of atemplate, and after some searches i found a code near to what i hope, that is it..
<?php if( is_sticky() ) ?>
<?php else ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php if( is_sticky() ) ?>
<?php else ?>
the problem is that code only grab last (one) sticky post, and what i looking for is to customize it to grab more than one sticky post.
Any help will be appreciated.