In case you want to add a new custom social icon/image into Header, next to the built-in social icons (like the example above with kakao.com), it will require a small code change. Here is a guide how it can be done:
- Login to you Admin Panel
- Navigate to Left Menu -> Appearance -> Editor
- Open functions.php
- Below the following code:$socialSite = tishonator_read_customizer_option(’tishonator_social_vine’, ”);
if ( !empty( $socialSite ) ) {
tishonator_show_single_social_site( $separatorBefore, $separatorAfter, $socialSite,
__( ‘Follow us on Vine’, ’tishonator’ ), ‘vine’.$iconSize, $openInNewWindow );
}Insert:
?>
<li>
<a href=”http://example.com” target=”_blank”>
<img style=”position:absolute”
src=”https://tishonator.com/dev/wp-content/uploads/kakao_account_login_btn_medium_narrow.png” />
</a>
</li>
<?php - Save changes