[Plugin: User Photo] Add link to author page from photo
-
In case anyone is wondering, this is a bit of code which will allow you to link from the author photo to the author page. This only works within the Loop.
<?php if (function_exists('userphoto_the_author_thumbnail')) { $author_id=$post->post_author; $curuser = get_userdata($author_id); $author_post_url=get_author_posts_url($curuser->ID, $curuser->nicename); echo '<div class="authorThumb">'; echo '<a href="' . $author_post_url . '" title="' . sprintf( __( "View all posts by %s" ), $curuser->user_nicename ) . '" ' . '>'; userphoto_the_author_thumbnail(); the_author_meta(user_url);} echo '</a></div>'; ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Plugin: User Photo] Add link to author page from photo’ is closed to new replies.