function tin_user_profile_widget() { if (is_user_logged_in()) { $current_user = wp_get_current_user(); $li_output = ''; $li_output .= '<li style="line-height:36px;clear: both;">' . tin_get_avatar($current_user->ID, '36', tin_get_avatar_type($current_user->ID), false) . sprintf(__('登录者 <a href="%1$s">%2$s</a>', 'tinection'), get_edit_profile_url($current_user->ID), $current_user->display_name) . '<a href="' . wp_logout_url(tin_get_current_page_url()) . '" title="' . esc_attr__('登出本帐号') . '">' . __('登出 »') . '</a></li>'; if (!filter_var($current_user->user_email, FILTER_VALIDATE_EMAIL)) { $li_output .= '<li><a href="' . tin_get_user_url('profile') . '#pass">' . __('【重要】请添加正确的邮箱以保证账户安全', 'tinection') . '</a></li>'; } $shorcut_links[] = array('title' => __('个人主页', 'tinection'), 'url' => get_author_posts_url($current_user->ID)); if (current_user_can('manage_options')) { $shorcut_links[] = array('title' => __('管理后台', 'tinection'), 'url' => admin_url()); } $can_post_cat = ot_get_option('tin_can_post_cat'); if (count($can_post_cat)) { $shorcut_links[] = array('title' => __('文章投稿', 'tinection'), 'url' => add_query_arg('action', 'new', tin_get_user_url('post'))); } $shorcut_html = '<li class="active">'; foreach ($shorcut_links as $shorcut) { $shorcut_html .= '<a href="' . $shorcut['url'] . '">' . $shorcut['title'] . ' »</a>'; } $shorcut_html .= '</li>'; $credit = intval(get_user_meta($current_user->ID, 'tin_credit', true)); $credit_void = intval(get_user_meta($current_user->ID, 'tin_credit_void', true)); $unread_count = intval(get_tin_message($current_user->ID, 'count', "( msg_type='unread' OR msg_type='unrepm' )")); $collects = get_user_meta($current_user->ID, 'tin_collect', true) ? get_user_meta($current_user->ID, 'tin_collect', true) : 0; $collects_array = explode(',', $collects); $collects_count = $collects != 0 ? count($collects_array) : 0; $info_array = array(array('title' => __('文章', 'tinection'), 'url' => tin_get_user_url('post'), 'count' => count_user_posts($current_user->ID)), array('title' => __('评论', 'tinection'), 'url' => tin_get_user_url('comment'), 'count' => get_comments(array('status' => '1', 'user_id' => $current_user->ID, 'count' => true))), array('title' => __('收藏', 'tinection'), 'url' => tin_get_user_url('collect'), 'count' => intval($collects_count))); if ($unread_count) { $info_array[] = array('title' => __('未读', 'tinection'), 'url' => tin_get_user_url('message'), 'count' => $unread_count); } $info_array[] = array('title' => __('积分', 'tinection'), 'url' => tin_get_user_url('credit'), 'count' => $credit); $info_html = '<li>'; foreach ($info_array as $info) { $info_html .= $info['title'] . '<a href="' . $info['url'] . '"> ' . $info['count'] . '</a>'; } $info_html .= tin_whether_signed($current_user->ID); $info_html .= '</li>'; $friend_html = ' <li> <div class="input-group"> <span class="input-group-addon">' . __('本页推广链接', 'tinection') . '</span> <input class="tin_aff_url form-control" type="text" class="form-control" value="' . add_query_arg('aff', $current_user->ID, tin_canonical_url()) . '"> </div> </li> '; return $li_output . $shorcut_html . $info_html . $friend_html; } else { $html = '<li><span class="local-account"><a data-sign="0" class="btn btn-primary user-login"><i class="fa fa-wordpress"></i>' . __('本地帐号', 'tinection') . '</a></span>'; if (ot_get_option('tin_open_qq') == 'on') { $html .= '<span class="other-sign"><a class="qqlogin btn" href="' . home_url('/?connect=qq&action=login&redirect=' . urlencode(tin_get_redirect_uri())) . '"><i class="fa fa-qq"></i><span>' . __('QQ 登 录', 'tinection') . '</span></a></span>'; } if (ot_get_option('tin_open_weibo') == 'on') { $html .= '<span class="other-sign"><a class="weibologin btn" href="' . home_url('/?connect=weibo&action=login&redirect=' . urlencode(tin_get_redirect_uri())) . '"><i class="fa fa-weibo"></i><span>' . __('微博登录', 'tinection') . '</span></a></span>'; } $html .= '</li>'; return $html; } }
<div class="login-yet-click-inner"> <?php echo tin_get_avatar($current_user->ID, '35', tin_get_avatar_type($current_user->ID)); ?> <a href="<?php bloginfo('url'); ?> /wp-admin/profile.php" title="<?php _e('用户管理', 'tinection'); ?> "><?php echo $current_user->display_name; ?> </a> <?php $unread = intval(get_tin_message($current_user->ID, 'count', "msg_type='unread' OR msg_type='unrepm'")); if ($unread > 0) { ?> <a href="<?php echo tin_get_user_url('message'); ?> " title="<?php _e('新消息', 'tinection'); ?> " class="new-message-notify"></a><?php } ?> </div> <div class="user-tabs"> <span><i class="fa fa-book"></i> <a href="<?php echo tin_get_user_url('post');