1. If you are logged out you will see “Please log in or Register” else if you are logged in 2. you will see “Welcome USERNAME”<?php if (is_user_logged_in()) { $user = wp_get_current_user(); ...
Display last posts
If you want to display five last posts from your Wordpress blog, use this function:<ul> <?php wp_get_archives('type=postbypost&limit=5'); ?> </ul>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 WP_Query:Then call method query(); to start the query. This is actually same as you would be using query_posts(); Parameter cat indicates...
















