How to link profile to post author?

0
How to link profile to post author? 1
hello8
Sep 10, 2018 10:44 PM 1 Answers General
Member Since Jul 2017
Subscribed Subscribe Not subscribe
Flag(0)

Hi. Love the profile plugin. Whichever user is logged in can access their profile by clicking on the page link in menu. But when other users click on the author of a post it does not take them to the authors profile. Have tried changing code in function.php

add_filter( 'author_link', 'change_author_link', 10, 1  );

  function change_author_link($link) {
   $username=get_the_author_meta('user_nicename');


  $link = 'http://ellie-mae.com/buzz/profile' . $username;
   return $link;
 }

Also tried changing 'username' to 'id' but still no luck.

Any idea how i can get the 'author' linked to their profile please?

Many thanks

2 Subscribers
How to link profile to post author? 1
How to link profile to post author? 3
Submit Answer
Please login to submit answer.
1 Answers
Sort By:
Best Answer
0
How to link profile to post author? 4
PickPlugins
Sep 10, 2018
Flag(0)

Welcome to our forum.

Can you please try following code and let me know the result.

add_filter( 'author_link', 'change_author_link', 10, 1  );

function change_author_link($link) {
  $userID =get_the_author_meta('ID');
  $link = 'http://ellie-mae.com/buzz/profile?id=' . $userID ;
  return $link;
 }

Regards

How to link profile to post author? 5
PickPlugins
- Sep 11, 2018 06:53 PM
Flag (0)
0

Glad to know that its work. if you love the plugin and our support please submit us five star reviews.
https://wordpress.org/plugins/user-profile/#reviews

Regards

How to link profile to post author? 6
hello8
- Sep 11, 2018 02:13 PM
Flag (0)
0

Hi. works perfect! Great plugin & support. Thankyou

Sign in to Reply
Replying as Submit