
Originally Posted by
MikeCloutier
When someone clicks on the author link on my self-hosted website, my login user name is shown as part of the url for the link. It seems to me that this partly defeats the security of the login process. Since that is the case, I might as well use my real name to login, unless there is a work around in either the
WP code or the theme code.
In your theme template files, look for the_author_link() tag, probably somethink like:
PHP Code:
This post written by <a href="<?php the_author_link(); ?>"><?php the_author(); ?></a>.
If you want to leave the author's name, replace the above with:
PHP Code:
This post written by <?php the_author(); ?>.
You may need to look in the following template files in your theme:
- index.php
- single.php
- archive.php
- category.php
- tag.php
- page.php
- search.php
There may be others, but hopefully that should point you in the right direction.
HTH