= 2 || $page >= 2 ) $title = "$title $sep " . sprintf( _e( 'Page', 'appointment' ), max( $paged, $page ) ); return $title; } add_filter( 'wp_title', 'appointment_title', 10,2 ); add_filter('get_avatar','appointment_add_gravatar_class'); function appointment_add_gravatar_class($class) { $class = str_replace("class='avatar", "class='img-circle", $class); return $class; } function appointment_add_to_author_profile( $contactmethods ) { $contactmethods['facebook_profile'] = __('Facebook Profile URL','appointment'); $contactmethods['twitter_profile'] = __('Twitter Profile URL','appointment'); $contactmethods['linkedin_profile'] = __('Linkedin Profile URL','appointment'); $contactmethods['google_profile'] = __('Google Profile URL','appointment'); return $contactmethods; } add_filter( 'user_contactmethods', 'appointment_add_to_author_profile', 10, 1); ?>