how to display authors personal blog name ?
ok I have like 5 authors.. when I go to put <?php bloginfo('name'); ?>
It displays the main blog title and not the authors personal blog title.. How would I go about doing this?
Thanks
how to display authors personal blog name ?
ok I have like 5 authors.. when I go to put <?php bloginfo('name'); ?>
It displays the main blog title and not the authors personal blog title.. How would I go about doing this?
Thanks
The bloginfo function pulls the blog's info.
http://codex.wordpress.org/Template_Tags
What you want is this:
Where would i post the author meta at? like it grabs the author meta.. where would i login to wordpress and type in the author meta?
i tried that link and it doesn't seem to be showing up
example - <?php the_author_meta( "website' ); ?>
ok i got website to work.. how would I figure out what blog description is? say if wanted to display that ??
<?php the_author_meta( "blogdescription' ); ?>
actually make that blogname
ok what i did was use nickname - <?php the_author_meta('nickname'); ?> thanks for your help and pointing me in the correct direction.