Adding login/logout menu to be-nice sidebar menu

Download your be-nice/sidebar.php

Then search this code in that file:

<h2>RSS Feeds</h2> <ul> <li><a xhref="<?php bloginfo('rss2_url'); ?>">Posts</a></li> <li><a xhref="<?php bloginfo('comments_rss2_url'); ?>">Comments</a></li> </ul>

Add few more lines to it:

<h2>RSS Feeds</h2> <ul> <li><a xhref="<?php bloginfo('rss2_url'); ?>">Posts</a></li> <li><a xhref="<?php bloginfo('comments_rss2_url'); ?>">Comments</a></li> </ul> <h2>System</h2> <ul> <li><?php wp_loginout(); ?></li> <li><?php wp_register(); ?></li> </ul>

    Posted February 25th, 2006 by mightyhitter under PHP, Wordpress

     

    Leave a Reply