Lines:
1 to 20 of 20
<?php /** * Gravatar shortcode for avatar and profile. * * Usage: * * [gravatar email="user@example.org" size="48"] * [gravatar_profile who="user@example.org"] * * @package Jetpack */ add_shortcode( 'gravatar', 'jetpack_gravatar_shortcode' ); add_shortcode( 'gravatar_profile', 'jetpack_gravatar_profile_shortcode' ); /* function jetpack_gravatar_shortcode() – Get gravatar using the email provided at the specified size. */ /* function jetpack_gravatar_profile_shortcode() – Display Gravatar profile */