Line | |
---|
1 | <?php
|
---|
2 | $userprofile = WPfbConnect_Logic::get_user();
|
---|
3 | ?>
|
---|
4 |
|
---|
5 | <div class="fbconnect_userprofile">
|
---|
6 | <div class="fbconnect_userpicmain">
|
---|
7 | <fb:profile-pic uid="<?php echo $userprofile->fbconnect_userid;?>" size="small" linked="true"></fb:profile-pic>
|
---|
8 | </div>
|
---|
9 |
|
---|
10 | <div class="fbconnect_profiletexts">
|
---|
11 | <b><?php _e('Status:', 'fbconnect') ?></b> <fb:user-status uid="<?php echo $userprofile->fbconnect_userid;?>" linked="true"></fb:user-status>
|
---|
12 | <br/><b><?php _e('Name:', 'fbconnect') ?> </b><?php echo $userprofile->display_name; ?>
|
---|
13 | <br/><b><?php _e('Nickname:', 'fbconnect') ?> </b><?php echo $userprofile->nickname; ?>
|
---|
14 | <br/><b><?php _e('Member since:', 'fbconnect') ?> </b><?php echo $userprofile->user_registered; ?>
|
---|
15 | <br/><b><?php _e('Website URL:', 'fbconnect') ?> </b><a href="<?php echo $userprofile->user_url; ?>" rel="external nofollow"><?php echo $userprofile->user_url; ?></a>
|
---|
16 | <br/><b><?php _e('About me:', 'fbconnect') ?> </b><?php echo $userprofile->description; ?><br/>
|
---|
17 | <?php if (isset($userprofile->fbconnect_userid) && $userprofile->fbconnect_userid!="" && $userprofile->fbconnect_userid!="0") : ?>
|
---|
18 | <br/><b><a href="http://www.facebook.com/profile.php?id=<?php echo $userprofile->fbconnect_userid; ?>" rel="external nofollow"><img class="icon-text-middle" src="<?php echo FBCONNECT_PLUGIN_URL; ?>/images/facebook_24.png"/><?php _e('Facebook profile', 'fbconnect') ?></a></b>
|
---|
19 | <?php endif; ?>
|
---|
20 | </div>
|
---|
21 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.