You appear to be a bot. Output may be restricted
Description
Adds Gravatar Hovercard setting
Usage
grofiles_add_settings();
Parameters
Returns
void
TO DO
always print HTML, hide via CSS/JS if !show_avatars
Source
File name: jetpack/modules/gravatar-hovercards.php
Lines:
1 to 7 of 7
function grofiles_add_settings() { if ( !get_option( 'show_avatars' ) ) return; add_settings_field( 'gravatar_disable_hovercards', __( 'Gravatar Hovercards', 'jetpack' ), 'grofiles_setting_callback', 'discussion', 'avatars' ); register_setting( 'discussion', 'gravatar_disable_hovercards', 'grofiles_hovercard_option_sanitize' ); }