hello all,
anybody help me to show the_excerpt() in recent post on my sidebar?
thanks for help
hello all,
anybody help me to show the_excerpt() in recent post on my sidebar?
thanks for help
I think that the_excerpts works within the wordpress loop.
you can use like this
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_excerpt(); ?>
<?php endwhile; endif; ?>
This topic has been closed to new replies.