Merhaba arkadaşlar,
wordpress'de kullandığım sitede bazı içerikleri rss poster eklentisi ile haber sitelerinden çekiyorum çekilen içeriklerde mutlak resim oluyor fakat tema'da görseller öne çıkarılmadığı zaman slider'da ve konu listeleme alanında hatalar oluşuyor temada nasıl ayarlayabilirim yardımcı olabilicek varmı
Öne çıkarılmış görsel ayarlamak Yardım
6
●437
- 07-11-2014, 21:19:00Bazı resimlerinizi özel alan ile bazıları öne çıkarılan görsel olarak ekliyorsanız veya resim yoksa başka bir görsel gösterebilirsiniz aşağıdaki kodları kullanın:
<?php if ( has_post_thumbnail() ) { $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'medium', false, '' ); $thumbnailSrc = $src[0]; ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<?php echo $thumbnailSrc; ?>" width="300" height="150" alt="<?php the_title(); ?>" /></a> <?php } else { ?> <?php $resim = get_post_meta($post->ID,'resim', true); if($resim != "") { ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<? echo ($resim); ?>" width="300" height="150" alt="<?php the_title(); ?>" /></a> <?php }else{ ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="http://demo.habermatik.net/v3/wp-content/themes/HaberMatikV3/images/habermatik.jpg" width="300" height="150" alt="<?php the_title(); ?>" /> </a> <?php } ?> <?php }?> - 07-11-2014, 21:44:11öncelikle yardımın için teşekkürler, fakat konu içinde resim olduğu halde hep habermatik resmini çekti yanlış uygulamış olabilirmiyimakinciyiz adlı üyeden alıntı: mesajı görüntüle
temanın anasayfa'daki slide kodu
<?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'post-thumbnails', false, '' ); $thumbnailSrc = $src[0]; ?> <?php $image = aq_resize( $thumbnailSrc, 1240, 500, true ); ?> <img alt="<?php the_title(); ?>" src="<?php echo $image ?>" />
Sizin verdiğiniz kodu şu şekilde kullandım
<?php if ( has_post_thumbnail() ) { $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'medium', false, '' ); $thumbnailSrc = $src[0]; ?> <?php $image = aq_resize( $thumbnailSrc, 1240, 500, true ); ?> <img alt="<?php the_title(); ?>" src="<?php echo $thumbnailSrc; ?>" /> <?php } else { ?> <?php $resim = get_post_meta($post->ID,'resim', true); if($resim != "") { ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<? echo ($resim); ?>" alt="<?php the_title(); ?>" /></a> <?php }else{ ?> <img src="http://demo.habermatik.net/v3/wp-content/themes/HaberMatikV3/images/habermatik.jpg" alt="<?php the_title(); ?>" /> </a> <?php } ?> <?php }?> - 07-11-2014, 22:28:56akinciyiz adlı üyeden alıntı: mesajı görüntüle
<?php if ( has_post_thumbnail() ) { $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'post-thumbnails', false, '' ); $thumbnailSrc = $src[0]; ?> <?php $image = aq_resize( $thumbnailSrc, 1240, 500, true ); ?> <img alt="<?php the_title(); ?>" src="<?php echo $thumbnailSrc; ?>" /> <?php } else { ?> <?php $resim = get_post_meta($post->ID,'resim', true); if($resim != "") { ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<? echo ($resim); ?>" alt="<?php the_title(); ?>" /></a> <?php }else{ ?> <img src="http://demo.habermatik.net/v3/wp-content/themes/HaberMatikV3/images/habermatik.jpg" alt="<?php the_title(); ?>" /> </a> <?php } ?> <?php }?>kodun olduğu şekli çalışmadı ne yazık kı sayfada ki çıktısı
<img alt="Erdoğana fahri profesörlük unvanı verildi" src="">