I'm using the template tag <?php wp_register(); ?>
to generate a link to register as a member however I want to change the before text "Register" and the after text "site admin"
But when I use the code like this
<?php wp_register('Sign Up', 'Your Profile'); ?>
this displays the words Sign up and Your profile not as links and also keeps the Register link..
so instead of my menu looking like this..
Home - Community - Log out - Your Profile
Its all jacked up like this
Home - Community - Log out - Sign up - Register - Your Profile
Any ideas on how to properly modify the Register template tag or perhaps a BETTER way to accomplish what I want?