-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-about.php
executable file
·62 lines (50 loc) · 1.7 KB
/
page-about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/*
Template Name: About
*/
?>
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<section class="hero">
<?php the_content(); ?>
</section>
<?php endwhile; endif; ?>
<div id="inner-content" class="wrap clearfix about-us">
<ul class="codelib-admins">
<?php
// Get the authors from the database ordered by user nicename
global $wpdb;
$query = "SELECT ID, user_nicename from $wpdb->users ORDER BY -user_nicename";
$author_ids = $wpdb->get_results($query);
// Loop through each author
foreach($author_ids as $author) :
// Get user data
$curauth = get_userdata($author->ID);
// If user level is above 0 or login name is "admin", display profile
if($curauth->user_level > 5 && $curauth->user_level < 8) :
// Get link to author page
$user_link = get_author_posts_url($curauth->ID);
// Set default avatar (values = default, wavatar, identicon, monsterid)
$avatar = 'wavatar';
?>
<li class="admin-user">
<a href="<?php echo $user_link; ?>" title="<?php echo $curauth->display_name; ?>" class="user-avatar">
<?php echo get_avatar($curauth->user_email, '200', $avatar); ?>
</a>
<section class="user-info">
<h2 class="user-name"><?php echo $curauth->display_name; ?>
<?php if(get_the_author_meta('twitter')) : ?>
<a href="http://twitter.com/<?php echo get_the_author_meta('twitter'); ?>" title="Visit <?php echo $user->display_name; ?>'s Twitter account" class="twitter">
@<?php echo get_the_author_meta('twitter'); ?>
</a>
<?php endif; ?>
</h2>
<?php echo $curauth->description; ?>
</section>
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
</div>
<?php get_footer(); ?>