Çoğu WordPress temasında “resim” özel alanıyla ve resmin URL adresini girerek küçük resim ekleme özelliği olur. Fakat thumb özelliği olmayanlar “nasıl yapacağım?” diye düşünmesin diye bu yazıyı hazırlamaya karar verdim. Bazen de thumb eklemediğimizde temada hata küçük bir hata ortaya çıkabiliyor.bu yazı ile çözeceğiz.
Not: Temanızda thumb kodu varsa ve thumb eklemediğinizde IE tarayıcısında resimin yüklenemediğine dair bir hata ikonu görüyorsanız. Aşağıdaki anlatım ile bu sorunu da çözebilirsiniz. PHP: WordPress temanızda küçük resim görünmesini istediğiniz tüm dosyalara (index.php, single.php)
1
|
<?php the_content();?> |
1
2
|
<?php $values = get_post_custom_values( "resim" ); ?> <?php if ( $values == "" ){?><? } else { ?> <div class = "kucuk-resim" ><a href= "<?php the_permalink() ?>" rel= "bookmark" title= "<?php the_title(); ?>" ><img src= "<?php $values = get_post_custom_values(" resim "); echo $values[0]; ?>" alt="<?php the_title(); ?> /></a></div><?php } ?> |
1
2
|
<?php $values = get_post_custom_values( "resim" ); ?> <?php if ( $values == "" ){?><div><a href= "<?php the_permalink() ?>" rel= "bookmark" title= "<?php the_title(); ?>" ><img src= "KLASİK-RESİM-URL-ADRESİ" alt= "<?php the_title(); ?> /></a></div><? }else{ ?> <divphp plain">kucuk-resim "><a href=" <?php the_permalink() ?> " rel=" bookmark " title=" <?php the_title(); ?> "><img src=" <?php $values = get_post_custom_values( "resim" ); echo $values [0]; ?> " alt=" <?php the_title(); ?> /></a></div><?php } ?> |
01
02
03
04
05
06
07
08
09
10
11
12
|
.kucuk-resim { float : left ; padding : 5px ; border : 1px solid #EAEAEA E; border-radius: 5px ; margin-right : 5px ; } .kucuk-resim a{ float : left ; border : 1px solid #EAEAEA ; padding : 5px ; } |
Hisse Yorumları
YanıtlaSilcoin yorum
yerli baddies
Bu yorum yazar tarafından silindi.
YanıtlaSil