[Resolved] Create shortcode for link to post author
-
Hi,
I am try to make shortcode to get link to author profile of current post:
function authorlink_my() {
$link = bp_core_get_userlink( $post->post_author ) ;
return $link;
}
add_shortcode( 'authorlink', 'authorlink_my' );
but without any success for now.
Any help?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘[Resolved] Create shortcode for link to post author’ is closed to new replies.