ap_get_profile_link()
Description #
Return link of user profile page
Source #
File: includes/qaquery.php
function ap_get_profile_link() {
global $post;
if ( ! $post ) {
return false;
}
return ap_user_link( $post->post_author );
}
Expand full source code Collapse full source code View on GitHub: includes/qaquery.php:330
Add your comment