You appear to be a bot. Output may be restricted
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 URL
Note: The value in the oik-plugins admin profile is not used in this version.
Usage
bw_get_author_name( $post );
Parameters
- $post
- ( mixed ) required –
Returns
void
Source
File name: oik-plugins/feed/oik-plugins-feed.php
Lines:
1 to 11 of 11
function bw_get_author_name( $post ) { // bw_trace2( $post ); $author = $post->post_author; oik_require( "admin/oik-plugins.php", "oik-plugins" ); $users = bw_user_list(); bw_trace2( $users, "users", false ); $author_name = bw_array_get( $users, $author, "bobbingwide" ); $url = bw_get_userdata( $author, "user_url", "https://www.bobbingwide.com/about-bobbing-wide" ); $link = retlink( null, $url, $author_name ); return( $link ); }