Guest User

Untitled

a guest
May 27th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. function show_blog_list() {
  2. $user_id = get_current_user_id();
  3. if ($user_id == 0) {
  4. echo 'You are not logged in.';
  5. } else {
  6. echo '<h2>Your Blog List with Prosite Levels</h2>';
  7. $user_blogs = get_blogs_of_user( $user_id );
  8. foreach ($user_blogs AS $user_blog) {
  9. global $psts;
  10. echo '<li><a href="'.$user_blog->siteurl.'">'.$user_blog->blogname.'</a> - Pro Sites Level: '.$psts->get_level( $user_blog->userblog_id ).'</li>';
  11. }
  12. echo '</ul>';
  13. }
  14. }
  15. add_shortcode( 'bloglist', 'show_blog_list' );
Add Comment
Please, Sign In to add comment