Info
- 6 posts
- 5 voices
- Started 4 years ago by nolageek
- Latest reply from liyucmh1314
- This topic is not resolved
HACK: User avatar from WPMU Avatar Plugin
-
- Posted 4 years ago #
If anyone is using ' Avatar pluginsuleiman, here's a hack I use to show the WPMU's avatar in BBPress:
In post.php, after the
<small><?php post_author_title(); ?></small>bit I use the following:<?php $userid = get_post_author_id(); $wp_avatar = '/full/path/to/public_html/wp-content/avatars/' .$userid. '.jpg'; $wp_avatarURL = '/wp-content/avatars/' .$userid. '.jpg'; if (file_exists($wp_avatar)) { echo '<img class="avatar" src="'. $wp_avatarURL.'" />'; } ?>Probably not the most elegant, but it works:
Vincent
-
- Posted 4 years ago #
thanks for the hack vincent, I'm glad to see you got it integrated into bbpress. I'm using your hack myself :)
-
- Posted 4 years ago #
oh neat! :) You're very welcome.
-
- Posted 4 years ago #
Awesome, thanks for this!
-
- Posted 2 months ago #
so cool, thanks a lot!
-
You must log in to post.