Gravatar

Klub adds user helpers for Gravatar and initials. Use this page when you want quick member avatars.

Example

<?php
$user = kirby()->user();
$gravatarUrl = $user?->gravatar();
?>

<?php if ($gravatarUrl): ?>
  <img src="<?= $gravatarUrl ?>" alt="<?= $user->name() ?>">
<?php else: ?>
  <span><?= $user->initials() ?></span>
<?php endif ?>

The Gravatar URL is cached for 60 minutes to reduce requests.

Kirby Klub is not affiliated with the developers of Kirby CMS. We are merely standing on the shoulder of giants.
© 2026 Bruno Meilick All rights reserved.