Need some WP help

personal

Newbie
Joined
Jan 24, 2010
Messages
20
Reaction score
1
Anyone knows how to add tags and recent comments in sidebar.

That's the code for recent posts, what should i chnage or add to the below code :
Code:
<li id="recent-posts" class="widget">
            <h4><?php _e("Recent Posts", 'studiopress'); ?></h4>
                <ul>
                    <?php wp_get_archives('type=postbypost&limit=5'); ?> 
                </ul>
        </li>
Thanks in advance guys.
 
Um, Wordpress is made to be very noob friendly... From the dashboard go to theme, then widgets, and you can drag and drop whatever widget you want into the side bar.

You don't have to mess with the code at all.

EDIT- Incase you don't know what the dashboard is... you can get to it from http://yourdomain.com/wp-admin
 
Last edited:
Back
Top