Как добавить в шапку свои данные

Здравствуйте. У меня такой вопрос. Мне нужно добавить данные(телефон организации и email) в шапку. Подскажите как это сделать.

This is the code you can use via Travelify Child Theme functions.php to add text inside header:

// Add Custom Text in header via Child Theme functions.php
add_action( 'travelify_header', 'header_contact_details' , 5 );

function header_contact_details() {
	echo '<div class="header-contacts">Contact details goes here</div>';
}

This text inside header will be aligned to the left by default, so you will need to style it and you can start it by adding this CSS to Theme Options >> Other >> Custom CSS. Of course you will need to make other changes as well as this is just and example.

.header-contacts {
  float: right;
  margin-right: 20px;
}