natalia
natalia

Reputation: 1

Display author URL in single.php

How can I display the author website in 'single.php' template, only if the author has entered a URL in her/his profile.

I'm displaying the URL in 'author.php' but the same code doesn't work in other templates.

Thanks

Upvotes: 0

Views: 807

Answers (1)

o.k.w
o.k.w

Reputation: 25810

From the WP Forum: Displaying user profile's website field

<a href="<?php echo get_usermeta($post->post_author,'user_url'); ?>">HERE</a>

Upvotes: 1

Related Questions