= 2 || $page >= 2 ) $title = "$title $sep " . sprintf( _e( 'Page', 'rambo' ), max( $paged, $page ) ); return $title; } add_filter( 'wp_title', 'appointment_title', 10,2 ); add_filter('get_avatar','appo_add_gravatar_class'); function appo_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','wallstreet'); $contactmethods['twitter_profile'] = __('Twitter Profile URL','wallstreet'); $contactmethods['linkedin_profile'] = __('Linkedin Profile URL','wallstreet'); $contactmethods['google_profile'] = __('Google Profile URL','wallstreet'); return $contactmethods; } add_filter( 'user_contactmethods', 'appointment_add_to_author_profile', 10, 1); function appointment_add_gravatar_class($class) { $class = str_replace("class='avatar", "class='img-responsive comment-img img-circle", $class); return $class; } add_filter('get_avatar','appointment_add_gravatar_class'); ?>