Call Function on header

Discussion in 'RoadFighter WordPress Theme' started by marinos13, Jul 9, 2014.

Thread Status:
Not open for further replies.
  1. marinos13

    marinos13 Member

    Joined:
    Jun 27, 2014
    Messages:
    80
    Likes Received:
    3
    Location:
    Cyprus
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Go to the header.php file present in your theme directory and paste the code given below in that file as instructed in the image given below.

    Code:
    <ul class="social_logos">
    <?php if (inkthemes_get_option('inkthemes_facebook') != '') { ?>
    <li class="sl-1"><a href="<?php echo inkthemes_get_option('inkthemes_facebook'); ?>"><span></span></a></li>
    <?php } ?> 
    <?php if (inkthemes_get_option('inkthemes_twitter') != '') { ?>
    <li class="sl-2"><a href="<?php echo inkthemes_get_option('inkthemes_twitter'); ?>"><span></span></a></li>
    <?php } ?>            
    <?php if (inkthemes_get_option('inkthemes_rss') != '') { ?>
    <li class="sl-3"><a href="<?php echo inkthemes_get_option('inkthemes_rss'); ?>"><span></span></a></li>
    <?php } ?> 
    <?php if (inkthemes_get_option('inkthemes_google') != '') { ?>
    <li class="sl-4"><a href="<?php echo inkthemes_get_option('inkthemes_google'); ?>"><span></span></a></li>
    <?php } ?> 
    <?php if (inkthemes_get_option('inkthemes_pinterest') != '') { ?>
    <li class="sl-5"><a href="<?php echo inkthemes_get_option('inkthemes_pinterest'); ?>"><span></span></a></li>
    <?php } ?> 
    <?php if (inkthemes_get_option('inkthemes_youtube') != '') { ?>
    <li class="sl-6"><a href="<?php echo inkthemes_get_option('inkthemes_youtube'); ?>"><span></span></a></li>
    <?php } ?> 
    <?php if (inkthemes_get_option('inkthemes_sd') != '') { ?>
    <li class="sl-7"><a href="<?php echo inkthemes_get_option('inkthemes_sd'); ?>"><span></span></a></li>
    <?php } ?> 
                            </ul> 
    [​IMG]

    This will fulfill your requirement.
     
  3. marinos13

    marinos13 Member

    Joined:
    Jun 27, 2014
    Messages:
    80
    Likes Received:
    3
    Location:
    Cyprus
    Thanks For your support!
     
Thread Status:
Not open for further replies.

Share This Page