Description
Return a link to the author's home page Determine the author's display name from the post author then append it to their website URLNote: The value in the oik-themes admin profile is not used in this version.
Usage
oikth_get_author_name( $post );Parameters
- $post
- ( mixed ) required –
Returns
voidSource
File name: oik-themes/feed/oik-themes-feed.phpLines:
1 to 10 of 10
function oikth_get_author_name( $post ) { // bw_trace2( $post ); $author = $post->post_author; oik_require( "admin/oik-themes.php", "oik-themes" ); $users = bw_user_list(); $author_name = bw_array_get( $users, $author, "bobbingwide" ); $url = bw_get_userdata( $author, "user_url", "http://www.bobbingwidewebdesign.com/about/herb/" ); $link = retlink( null, $url, $author_name ); return( $link ); }View on GitHub
Called by
1 to 1 of 1
Invoked by
Call hooks
API Letters:
