• 04-06-2017, 21:30:04
    #1
    Selamlar,

    Aşağıdaki kodlamada resimlere alt="" etiketi koymak istiyorum ama beceremedim.

    Yardımcı olabilir misiniz?
    Teşekkürler


    <?php
       $recent_posts = homePageTelf();
    
       foreach( $recent_posts as $recent ){
        $imageTel = get_the_post_thumbnail($recent->ID, 'medium', array( 'class' => 'img-thumbnail' )); ?>
        <div class="item topic"> <a title="<?php echo $recent->post_title; ?>" href="<?php echo post_permalink( $recent->ID ); ?>">
         <?php echo $imageTel; ?>
    
         <h5><?php echo $recent->post_title; ?></h5>
    
        </a> </div>
        <?php		} wp_reset_query(); ?>
  • 04-06-2017, 23:09:15
    #2
    ivanlar adlı üyeden alıntı: mesajı görüntüle
    Selamlar,

    Aşağıdaki kodlamada resimlere alt="" etiketi koymak istiyorum ama beceremedim.

    Yardımcı olabilir misiniz?
    Teşekkürler


    <?php
       $recent_posts = homePageTelf();
    
       foreach( $recent_posts as $recent ){
        $imageTel = get_the_post_thumbnail($recent->ID, 'medium', array( 'class' => 'img-thumbnail' )); ?>
        <div class="item topic"> <a title="<?php echo $recent->post_title; ?>" href="<?php echo post_permalink( $recent->ID ); ?>">
         <?php echo $imageTel; ?>
    
         <h5><?php echo $recent->post_title; ?></h5>
    
        </a> </div>
        <?php		} wp_reset_query(); ?>


    Buyur.

    <?php 
       $recent_posts = homePageTelf(); 
    
       foreach( $recent_posts as $recent ){ 
        $imageTel = get_the_post_thumbnail($recent->ID, 'medium', array( 'class' => 'img-thumbnail' )); ?> 
        <div class="item topic"> <a title="<?php echo $recent->post_title; ?>" alt="<?php echo $recent->post_title; ?>" href="<?php echo post_permalink( $recent->ID ); ?>"> 
         <?php echo $imageTel; ?> 
    
         <h5><?php echo $recent->post_title; ?></h5> 
    
        </a> </div> 
        <?php        } wp_reset_query(); 
    ?>
  • 06-06-2017, 17:01:28
    #3
    LEGO adlı üyeden alıntı: mesajı görüntüle
    Buyur.

    <?php 
       $recent_posts = homePageTelf(); 
    
       foreach( $recent_posts as $recent ){ 
        $imageTel = get_the_post_thumbnail($recent->ID, 'medium', array( 'class' => 'img-thumbnail' )); ?> 
        <div class="item topic"> <a title="<?php echo $recent->post_title; ?>" alt="<?php echo $recent->post_title; ?>" href="<?php echo post_permalink( $recent->ID ); ?>"> 
         <?php echo $imageTel; ?> 
    
         <h5><?php echo $recent->post_title; ?></h5> 
    
        </a> </div> 
        <?php        } wp_reset_query(); 
    ?>

    olmadı dostum ya sanırım burda bi sıkıntı var. $imageTel; bi yerlerden çekiyor olabilir. Yinede sagol
  • 06-06-2017, 20:15:39
    #4
    ivanlar adlı üyeden alıntı: mesajı görüntüle
    olmadı dostum ya sanırım burda bi sıkıntı var. $imageTel; bi yerlerden çekiyor olabilir. Yinede sagol
    Hocam skype adresinizi verin ekleyim oradan yardımcı olayım size.
  • 06-06-2017, 20:31:35
    #5
    ivanlar adlı üyeden alıntı: mesajı görüntüle
    Selamlar,

    Aşağıdaki kodlamada resimlere alt="" etiketi koymak istiyorum ama beceremedim.

    Yardımcı olabilir misiniz?
    Teşekkürler


    <?php
       $recent_posts = homePageTelf();
    
       foreach( $recent_posts as $recent ){
        $imageTel = get_the_post_thumbnail($recent->ID, 'medium', array( 'class' => 'img-thumbnail' )); ?>
        <div class="item topic"> <a title="<?php echo $recent->post_title; ?>" href="<?php echo post_permalink( $recent->ID ); ?>">
         <?php echo $imageTel; ?>
    
         <h5><?php echo $recent->post_title; ?></h5>
    
        </a> </div>
        <?php		} wp_reset_query(); ?>


     <?php
       $recent_posts = homePageTelf();
    
       foreach( $recent_posts as $recent ){
    $attr = array(
    			'class'	=> "img-thumbnail",
    			'alt'	=> trim(strip_tags( $attachment->post_excerpt )),
    		);
        $imageTel = get_the_post_thumbnail($recent->ID, 'medium',  $attr); ?>
        <div class="item topic"> <a title="<?php echo $recent->post_title; ?>" href="<?php echo post_permalink( $recent->ID ); ?>">
         <?php echo $imageTel; ?>
    
         <h5><?php echo $recent->post_title; ?></h5>
    
        </a> </div>
        <?php        } wp_reset_query(); ?>
    'alt' => trim(strip_tags( $attachment->post_excerpt )), olan kısım resme alt tagını attchment in özeti olarak ekler, değiştirebilirsiniz.