in most themes that site admin link seems to be made up of <?php wp_register(); ?> which must include the li tags... but i want a login/out and site admin link in the footer.. I don't see how to get that link not in a list, though..
in most themes that site admin link seems to be made up of <?php wp_register(); ?> which must include the li tags... but i want a login/out and site admin link in the footer.. I don't see how to get that link not in a list, though..
MARKUP:
<ul class="dashlinks">
<li><?php wp_loginout(); ?></li>
<?php wp_register(); ?>
</ul>
CSS
.dashlinks {
clear:both;
margin:0;
padding:0;
}
dashlinks li {
display:inline;
margin:0;
padding:0 5px;
}
Still in a list but displayed inline.
This topic has been closed to new replies.