It’s usually in your Theme’s sidebar.php file.
thats where the <?wp_meta()> tag is but where is the actual file?
Say your theme is Mytheme then it would be in wp-content/themes/Mytheme directory.
But I think I’m not answering or understanding your question…
um let me try and explain what function calls the log in and log out links? ok then where can i find the file that function calls? so I can add a link to it. Make sense? I did not find it in my themes sidebar.
Is wp_loginout() the function you’re asking about?
hmm let me post a snipet of code here is the link to my site im designing if you look at the lower right corner you will see i have added an e-mail link but its not uniform with the others. so i wanted to add it in that grouping http://www.grahamfamilytx.net/blog <li><h2><?php _e('Meta'); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><?php wp_meta(); ?></li><li>
<a href="http://www.grahamfamilytx.net/blog/?page_id=3">E-mail Us</a></li>
</ul>
</li>
Thanks again but I got it fixed.