-
Notifications
You must be signed in to change notification settings - Fork 1
/
page-the-team.php
95 lines (80 loc) · 3.44 KB
/
page-the-team.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php // phpcs:ignore
get_header(); ?>
<div class="wrap">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); // phpcs:ignore ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<?php twentyseventeen_edit_link( get_the_ID() ); ?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
</div><!-- .entry-content -->
<?php
$args = array(
'post_type' => array( 'wptd_organizer' ),
'post_status' => array( 'publish' ),
'nopaging' => true,
'posts_per_page' => -1,
'order' => 'ASC',
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) : //phpcs:ignore ?>
<div class="entry-content">
<div class="cards">
<?php
while ( $query->have_posts() ) :
$query->the_post();
$wporg = get_field( 'username_wporg' );
$slack = get_field( 'username_slack' );
$fb = get_field( 'facebook' );
$tt = get_field( 'twitter' );
$ln = get_field( 'linkedin' );
$wb = get_field( 'website' );
?>
<div class="team-member card">
<div class="card-image">
<?php
$image = wp_get_attachment_image( get_field( 'image' ), 'full' );
if ( $image ) {
echo wp_kses_post( $image );
} else {
echo get_avatar( get_field( 'e_mail' ), 150 );
}
?>
</div>
<div class="card-name">
<?php the_title(); ?>
</div>
<div class="card-locale">
<?php echo esc_attr( get_field( 'city' ) ); ?>, <?php echo esc_attr( get_field( 'country' ) ); ?>
</div>
<div class="card-role">
<?php echo esc_attr( get_field( 'role' ) ); ?> <br>
</div>
<div class="card-bio">
<?php echo wp_kses_post( get_field( 'bio' ) ); ?>
</div>
<div class="card-social">
<?php echo ( ! empty( $wb ) ) ? '<a href="' . esc_attr( $wb ) . '" target="_blank" title="Website"><i class="fas fa-link"></i></a>' : ''; ?>
<?php echo ( ! empty( $wporg ) ) ? '<a href="https://profiles.wordpress.org/' . esc_attr( $wporg ) . '" target="_blank" title="WordPress Profile"><i class="fab fa-wordpress"></i></a>' : ''; ?>
<?php echo ( ! empty( $slack ) ) ? '<a href="https://wordpress.slack.com/team/' . esc_attr( $slack ) . '" target="_blank" title="Slack Profile"><i class="fab fa-slack"></i></a>' : ''; ?>
<?php echo ( ! empty( $fb ) ) ? '<a href="' . esc_attr( $fb ) . '" target="_blank" title="Facebook Profile"><i class="fab fa-facebook"></i></a>' : ''; ?>
<?php echo ( ! empty( $tt ) ) ? '<a href="' . esc_attr( $tt ) . '" target="_blank" title="Twitter Profile"><i class="fab fa-twitter"></i></a>' : ''; ?>
<?php echo ( ! empty( $ln ) ) ? '<a href="' . esc_attr( $ln ) . '" target="_blank" title="LinkedIn Profile"><i class="fab fa-linkedin"></i></a>' : ''; ?>
</div>
</div>
<?php endwhile; ?>
</div> <!-- .cards -->
</div><!-- .entry-content -->
<?php endif; ?>
<?php wp_reset_postdata(); ?>
</article><!-- #post-## -->
<?php endwhile; // End of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- .wrap -->
<?php
get_footer();