Display last posts
If you want to display five last posts from your Wordpress blog, use this function:
[php]
<ul>
<?php wp_get_archives('type=postbypost&limit=5'); ?>
</ul>
[/php]
For more detailed info go
If you want to display five last posts from your Wordpress blog, use this function:
[php]
<ul>
<?php wp_get_archives('type=postbypost&limit=5'); ?>
</ul>
[/php]
For more detailed info go
Recently my client's design required displaying posts in sidebar only from one category. To solve this problem I decided to use class WP_Query.The first we have to create instance of...