Last active
April 26, 2020 15:36
-
-
Save krasenslavov/6f81d3dfa95f5f84fa0abb67ad06c32d to your computer and use it in GitHub Desktop.
Blogger cards template file. Visit blog post https://bit.ly/2VdH98p
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $bloggers = get_users(['role__in' => ['author', 'subscriber']]);?> | |
<div class="grid"> | |
<?php foreach($bloggers as $user):?> | |
<user-card name="<?php echo $user->display_name;?>" avatar="<?php echo get_avatar_url($user->ID, array('size' => 512));?>"> | |
<div slot="email"><?php echo $user->user_email;?></div> | |
<div slot="url"><?php echo $user->user_url;?></div> | |
<div slot="bio"><?php echo $user->user_description;?></div> | |
</user-card> | |
<?php endforeach;?> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment