How to add alt image tags for SEO on home page slider images?

Discussion in 'Infoway WordPress Theme' started by leadology, Sep 28, 2013.

  1. leadology

    leadology Member

    Joined:
    Dec 28, 2011
    Messages:
    100
    Likes Received:
    2
    I have a client mentioning to me that there are no alt tags on his site for the slider pictures. Can you help by telling me how and where to add them? Thank you:)
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to front-page.php present in your theme directory and follow the instruction as shown in image given below

    2013-09-30_1200.png


    Use same process for others also.
     
  3. leadology

    leadology Member

    Joined:
    Dec 28, 2011
    Messages:
    100
    Likes Received:
    2
    Confused. here is what i see on my s ite. can you please show me and thank you:)


    <?php if ($check_img_ofset == 0 && inkthemes_get_option('inkthemes_slideimage1') != '') { ?>
    <div class="slider-video"><?php echo inkthemes_get_option('inkthemes_slideimage1'); ?></div>
    <?php } else { ?>
    <?php if (inkthemes_get_option('inkthemes_slideimage1') != '') { ?>
    <a href="<?php echo inkthemes_get_option('inkthemes_slidelink1'); ?>" >
    <img src="<?php echo inkthemes_get_option('inkthemes_slideimage1'); ?>" alt="Slide 1"/>
    </a>
    <?php } else { ?>
    <a href="http://www.inkthemes.com"><img src="<?php echo get_template_directory_uri(); ?>/images/1.png" alt="Slide 1"></a>
    <?php } } ?>
    </div>
    <!-- Second Content -->
    <?php if (inkthemes_get_option('inkthemes_slideimage2') != '') { ?>
    <div id="fragment-2" class="ui-tabs-panel ui-tabs-hide" style="">


    \for example, there seems to be two places that show alt tag for slide 1

    :)
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Add alt tag in first "Slide 1" and use same process for other slide also.

    For example

    Code:
    <img src="<?php echo inkthemes_get_option('inkthemes_slideimage1'); ?>" alt="Slide 1"/>
     

Share This Page