Thank you. I added the code at the end of the function.php file, but the title still appears twice.
Here’s what the end of my functions.php file looks like:
`/*===================================================================================
* Add Author Links
* =================================================================================*/
function weblizar_author_profile( $contactmethods ) {
$contactmethods[‘youtube_profile’] = ‘Youtube Profile URL’;
$contactmethods[‘twitter_profile’] = ‘Twitter Profile URL’;
$contactmethods[‘facebook_profile’] = ‘Facebook Profile URL’;
$contactmethods[‘linkedin_profile’] = ‘Linkedin Profile URL’;
$contactmethods[‘flikr_profile’] = ‘Flickr Profile URL’;
$contactmethods[‘dribble_profile’] = ‘Dribble Profile URL’;
$contactmethods[‘pintrest_profile’] = ‘Pintrest Profile URL’;
$contactmethods[‘googleplus_profile’] = ‘GooglePlus Profile URL’;
$contactmethods[‘skype_profile’] = ‘Skype ID’;
$contactmethods[‘rss_profile’] = ‘RSS LINK URL’;
return $contactmethods;
}
add_filter( ‘user_contactmethods’, ‘weblizar_author_profile’, 10, 1);
?>
<?php if ( ! function_exists( ‘_wp_render_title_tag’ ) ) {
function chronicle_render_title() {
?>
<title><?php wp_title( ‘|’, true, ‘right’ ); ?></title>
<?php }
add_action( ‘wp_head’, ‘chronicle_render_title’ );
} ?>`